-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.25 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
[project]
name = "sanejs"
version = "2.1"
description = "Lookup service for known legitimate JavaScript."
authors = [{name="Raphaël Vinot", email="[email protected]"}]
license = "BSD-3-Clause"
requires-python = ">=3.12,<4.0"
dynamic = [ "classifiers" ]
dependencies = [
"gitpython (>=3.1.44)",
"redis[hiredis] (>=5.2.1)",
"flask (>=3.1.0)",
"gunicorn (>=23.0.0)",
"flask-restx (>=1.3.0)",
"pysanejs (>=2.0.4)",
"werkzeug (>=3.1.3)",
"orjson (>=3.10.15)",
]
[tool.poetry]
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Internet',
]
[project.scripts]
start_website = "bin.start_website:main"
start = "bin.start:main"
run_backend = "bin.run_backend:main"
build_hashes = "bin.build_hashes:main"
shutdown = "bin.shutdown:main"
stop = "bin.stop:main"
update = "bin.update:main"
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.1"
types-redis = "^4.6.0.20241004"
ipython = "^8.32.0"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"