-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.34 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
[tool.poetry]
name = "geobook"
version = "0.0.1"
description = "The geospatial repository next generation."
authors = [
"Aliaksandr Vaskevich <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gb-libs/geobook"
repository = "https://github.com/gb-libs/geobook"
documentation = "https://github.com/gb-libs/geobook"
keywords = [
"geospatial",
"gis",
"geo",
"json",
"geojson",
"rest",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.7"
fastapi = "^0.101.1"
uvicorn = "^0.22.0"
pydantic = {extras = ["dotenv"], version = "^2.0.2"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
asyncio = "^3.4.3"
click = "^8.0.3"
PyJWT = "^2.3.0"
motor = "^3.0.0"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
pytest = "^7.1.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "hug"
src_paths = ["isort", "tests"]