-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.38 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
[tool.poetry]
name = "titan"
version = "0.5.0"
readme = "README.md"
description = "TITAN platform API services"
homepage = "https://github.com/KhaosResearch/titan-platform/"
repository = "https://github.com/KhaosResearch/titan-platform/"
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.scripts]
titan = "titan.__main__:cli"
[tool.poetry.dependencies]
python = "^3.7"
pydantic = {extras = ["dotenv"], version = "^1.5.1"}
fastapi = "^0.61.2"
uvicorn = "^0.11.5"
pyjwt = "^1.7.1"
passlib = {extras = ["bcrypt"], version = "^1.7.2"}
python-multipart = "^0.0.5"
strconv = "^0.4.2"
httpx = "^0.15.4"
aiofiles = "^0.5.0"
aiocache = "^0.11.1"
motor = "^2.3.0"
pystardog = "^0.9.7"
rdflib = "^5.0.0"
[tool.poetry.dev-dependencies]
black = "^20.8.b1"
mypy = "^0.780"
isort = "^5.5.2"
pytest = "^6.1.0"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| _build
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"