-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.07 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
[tool.poetry]
name = "apistar-peewee-orm"
version = "0.3.6"
description = "Peewee integration for API Star."
authors = ["José Antonio Perdiguero López <perdy@perdy.io>"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/PeRDy/apistar-peewee-orm"
keywords = ["apistar", "peewee", "orm"]
include = ["apistar_peewee_orm/**/*.py"]
[tool.poetry.dependencies]
python = "^3.6"
apistar = "^0.5.30"
peewee = "^3.5"
clinner = "^1.10"
peewee-migrate = "^1.0"
psycopg2 = { version = "^2.7", optional = true }
mysqlclient = { version = "^1.3", optional = true }
apsw = { version = "^3.9", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^3.6"
pytest-xdist = "^1.22"
pytest-cov = "^2.5"
tox = "^3.0"
clinner = "^1.9"
ipython = "^6.4"
flake8 = "^3.5"
isort = "^4.3"
black = "^18.3-alpha.0"
[tool.poetry.scripts]
apistar-peewee-orm = "apistar_peewee_orm.__main__:main"
[tool.poetry.extras]
apsw = ["apsw"]
mysql = ["mysqlclient"]
postgresql = ["psycopg2"]
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| build
| dist
)/
'''