-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
89 lines (82 loc) · 2.34 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "exafs"
dynamic = ["version"]
authors = [
{name = "Jiri Vrany"},
{name = "Petr Adamec"},
{name = "Josef Verich"},
{name = "Jakub Man"},
]
maintainers = [
{name = "Jiri Vrany", email = "jiri.vrany@cesnet.cz"}
]
license = "MIT"
description = "Tool for creation, validation, and execution of ExaBGP messages for network security."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["bgp", "exabgp", "flowspec", "ddos", "network-security", "CESNET"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Networking",
"Topic :: Security",
"Framework :: Flask",
]
dependencies = [
"Flask>=2.0.2",
"Flask-SQLAlchemy>=2.2",
"Flask-SSO>=0.4.0",
"Flask-WTF>=1.0.0",
"Flask-Migrate>=3.0.0",
"Flask-Script>=2.0.0",
"Flask-Session",
"PyJWT>=2.4.0",
"PyMySQL>=1.0.0",
"requests>=2.20.0",
"babel>=2.7.0",
"email_validator>=1.1",
"pika>=1.3.0",
"loguru",
"flasgger",
"python-dotenv",
]
[project.scripts]
exafs-db-init = "flowapp.scripts.db_init:main"
exafs-create-admin = "flowapp.scripts.create_admin:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/CESNET/exafs"
Repository = "https://github.com/CESNET/exafs"
Documentation = "https://github.com/CESNET/exafs/blob/master/README.md"
Issues = "https://github.com/CESNET/exafs/issues"
Changelog = "https://github.com/CESNET/exafs/blob/master/README.md"
[tool.setuptools.dynamic]
version = {attr = "flowapp.__about__.__version__"}
[tool.setuptools.packages.find]
include = ["flowapp*"]
[tool.setuptools.package-data]
flowapp = [
"static/*",
"static/js/*",
"templates/*",
"templates/errors/*",
"templates/forms/*",
"templates/layouts/*",
"templates/pages/*",
"migrations/*",
"migrations/versions/*",
]