forked from yaroslaff/antifraud2gis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 917 Bytes
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
[project]
name = "antifraud2gis"
version = "0.1.2"
dependencies = [
"requests",
"loguru",
"rich",
"argalias",
"python-dotenv",
"numpy",
"fastapi",
"uvicorn",
"jinja2",
"python-multipart",
"dramatiq[redis, watch]",
"markdown",
"python-frontmatter",
"evalidate",
"lmdb"
]
requires-python = ">=3.8"
authors = [{ name = "Yaroslav Polyakov", email = "yaroslaff@gmail.com" }]
[project.urls]
Homepage = "https://github.com/yaroslaff/scrape2gis"
Repository = "https://github.com/yaroslaff/scrape2gis"
[project.scripts]
af2gis = "antifraud2gis.cli.main:main"
af2dev = "antifraud2gis.cli.dev:main"
af2worker = "antifraud2gis.cli.af2worker:main"
af2web = "antifraud2gis.cli.af2web:main"
[build-system]
# requires = ["setuptools"]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}