1+ [build-system ]
2+ requires = [" setuptools>=61.0" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " nemea-pycommon"
7+ version = " 1.7.0"
8+ description = " Common Python modules and methods of the NEMEA system."
9+ readme = {text = " The module contains methods for creation and submission of incident reports in IDEA format." , content-type = " text/plain" }
10+ license = {text = " BSD" }
11+ authors = [
12+ {
name =
" Vaclav Bartos, CESNET" ,
email =
" [email protected] " },
13+ ]
14+ maintainers = [
15+ {
name =
" Tomas Cejka" ,
email =
" [email protected] " },
16+ ]
17+ requires-python = " >=3.6"
18+ dependencies = [
19+ " pynspect" ,
20+ " idea-format" ,
21+ " PyYAML" ,
22+ " ply" ,
23+ " jinja2" ,
24+ " redis" ,
25+ ]
26+ classifiers = [
27+ " Development Status :: 4 - Beta" ,
28+ " License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
29+ " Operating System :: POSIX" ,
30+ " Programming Language :: C" ,
31+ " Programming Language :: Python" ,
32+ " Programming Language :: Python :: 3" ,
33+ " Topic :: Software Development :: Libraries" ,
34+ " Topic :: System :: Networking :: Monitoring" ,
35+ ]
36+
37+
38+ [project .optional-dependencies ]
39+ test = [
40+ " pytest" ,
41+ " pytest-cov" ,
42+ ]
43+
44+
45+
46+ [project .urls ]
47+ Homepage = " https://github.com/CESNET/Nemea-Framework"
48+
49+ [tool .setuptools ]
50+ py-modules = [" report2idea" , " ip_prefix_search" ]
51+ packages = [" reporter_config" , " reporter_config.actions" ]
52+
53+
54+ [tool .pytest .ini_options ]
55+ testpaths = [" test" ]
56+ python_files = [" *_unittest.py" ," rc_*.py" ]
57+ addopts = " "
0 commit comments