-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 999 Bytes
/
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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "scenographer"
version = "0.1.1"
description = "The cool dude who sets up the stage. Word."
authors = ["Xavier Francisco <[email protected]>"]
readme = 'README.md'
keywords = ["postgres", "subset", "sample"]
homepage = "https://zyperco.github.io/scenographer/"
documentation = "https://zyperco.github.io/scenographer/"
repository = "https://github.com/zyperco/scenographer/"
[tool.poetry.dependencies]
python = "^3.8"
sqlalchemy_utils = "^0.36.8"
sqlalchemy-postgres-copy = "^0.5.0"
sqlalchemy = "^1.3.19"
psycopg2-binary = "^2.8.5"
networkx = "^2.5"
docopt = "^0.6.2"
loguru = "^0.5.1"
pyrsistent = "^0.16.0"
matplotlib = "^3.1.2"
commentjson = "^0.8.3"
dict-digger = "^0.2.1"
[tool.poetry.dev-dependencies]
ipython = "^7.18.1"
pdoc3 = "^0.9.1"
pylint = "^2.6.0"
pytest = "^6.1.0"
isort = "^5.4.2"
black = "^20.8b1"
flake8 = "^3.8.3"
[tool.poetry.scripts]
scenographer = "scenographer.cli:cli"