-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
41 lines (38 loc) · 1.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "faro"
version = "0.0.4"
description = "An SQL-focused data analysis library for Python"
authors = ["Yannis Katsaros <yanniskatsaros@hotmail.com>"]
maintainers = ["Yannis Katsaros <yanniskatsaros@hotmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yanniskatsaros/faro"
repository = "https://github.com/yanniskatsaros/faro"
documentation = "https://github.com/yanniskatsaros/faro/docs"
keywords = [
"sql",
"python",
"data-analysis",
"data-science",
"database"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha"
]
[tool.poetry.dependencies]
python = "^3.6.1"
pydantic = "^1.5.1"
pandas = "^1.0.3"
[tool.poetry.dev-dependencies]
pylint = "^2.5.2"
pytest = "^5.4.2"
ipython = "^7.14.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"