-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
77 lines (59 loc) · 1.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "twingraph"
description = "This package provides tools for predictive modeling workflows, including (a) infrastructure provisioning, (b) graph orchestration and (c) recording workflow artifacts for repeatability and auditability."
version = "0.1.0"
license = "MIT0"
authors = []
readme = "README.md"
repository = "https://github.com/aws-samples/twingraph"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.26.45"
gremlinpython = "^3.6.1"
numpy = "^1.24.1"
docker = "^6.0.1"
celery = "^5.2.7"
flower = "^1.2.0"
simplejson = "^3.18.1"
kombu = "^5.2.4"
pep8 = "^1.7.1"
redis = "^4.4.2"
kubernetes = "^25.3.0"
nest-asyncio = "^1.5.6"
pandas = "^2.0.2"
m2r2 = "^0.3.3.post2"
sphinx-autodoc-typehints = "^1.23.0"
sphinx-markdown-builder = "^0.5.5"
pdoc = "^14.5.1"
pytest = "^7.3.1"
gitpython = "^3.1.41"
aiohttp = "^3.9.4"
certifi = "^2024.7.4"
[tool.poetry.group.test.dependencies]
mypy = "^0.982"
wemake-python-styleguide = "^0.17"
flake8-pytest-style = "^1.6"
doc8 = "^1.0"
nitpick = "^0.32"
safety = "^2.3"
pytest = "^7.1"
pytest-cov = "^4.0"
pytest-randomly = "^3.12"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx-autodoc-typehints = "^1.19"
m2r2 = "^0.3"
tomli = "^2.0"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"