-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (43 loc) · 1.3 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
[tool.poetry]
name = "sanejs"
version = "2.1"
description = "Lookup service for known legitimate JavaScript."
authors = ["Raphaël Vinot <[email protected]>"]
license = "BSD-3-Clause"
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
]
[tool.poetry.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.dependencies]
python = "^3.12"
gitpython = "^3.1.43"
redis = {version = "^5.2.0", extras = ["hiredis"]}
flask = "^3.0.3"
gunicorn = "^23.0.0"
flask-restx = "^1.3.0"
pysanejs = "^2.0.2"
werkzeug = "^3.1.2"
orjson = "^3.10.11"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
types-redis = "^4.6.0.20241004"
ipython = "^8.29.0"
[build-system]
requires = ["poetry_core>=1.0"]
build-backend = "poetry.core.masonry.api"