-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.33 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
[tool.poetry]
name = "drama"
version = "0.7.2"
readme = "README.md"
description = "Workflow orchestration engine"
homepage = "https://github.com/benhid/drama/"
repository = "https://github.com/benhid/drama/"
authors = ["Antonio Benítez Hidalgo <[email protected]>"]
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Typing :: Typed",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.7"
fastapi = "^0.66.0"
pydantic = {extras = ["dotenv"], version = "^1.8.1"}
uvicorn = "^0.14.0"
requests = "^2.23.0"
fastavro = "^1.4.1"
kafka-python = "^2.0.2"
dramatiq = {extras = ["rabbitmq", "watch"], version = "^1.9.0"}
pymongo = "^3.10.1"
minio = "^7.0.3"
hdfs = "^2.6.0"
filelock = "^3.0.12"
PyNaCl = "^1.4.0"
[tool.poetry.dev-dependencies]
black = "^21.5b1"
mypy = "^0.910"
isort = "^5.5.2"
pytest = "^6.2.4"
[tool.poetry.scripts]
drama = "drama.__main__:cli"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"