-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
56 lines (50 loc) · 1.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "odata-query"
version = "0.10.0"
description = "An OData query parser and transpiler."
authors = ["Oliver Hofkens <[email protected]>"]
readme = "README.rst"
license = "MIT"
keywords = ["OData", "Query", "Parser"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Compilers"
]
include = ["odata_query/py.typed"]
[tool.poetry.dependencies]
python = "^3.7"
python-dateutil = "^2.8.1"
sly = "^0.4"
django = { version = ">=2.2", optional = true }
sqlalchemy = { version = "^1.4", optional = true }
black = { version = "^22.1", optional = true }
bump2version = { version = "^1.0", optional = true }
flake8 = { version = "^3.8", optional = true }
isort = { version = "^5.7", optional = true }
mypy = { version = "^0.931", optional = true }
types-python-dateutil = { version = "^2.8.1", optional = true }
pytest = { version = "^6.2 || ^7.0", optional = true }
pytest-cov = { version = "*", optional = true }
sphinx = { version = "^5.3", optional = true }
sphinx-rtd-theme = { version = "^2.0", optional = true }
vulture = { version = "^2.3", optional = true }
[tool.poetry.extras]
dev = ["bump2version"]
django = ["django"]
docs = ["sphinx", "sphinx-rtd-theme"]
linting = ["flake8", "black", "isort", "mypy", "types-python-dateutil", "yamllint", "vulture"]
sqlalchemy = ["sqlalchemy"]
testing = ["pytest", "pytest-cov", "pytest-xdist"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"