generated from AmadeusITGroup/python-project-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
52 lines (46 loc) · 1.2 KB
/
setup.cfg
File metadata and controls
52 lines (46 loc) · 1.2 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
[metadata]
name = amadeus-os-gaspar
description = GenAI-powered System for Privacy incident Analysis and Recovery
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/AmadeusITGroup/GASPAR
author = Mehdi Boustala
author_email = mehdi.boustala@amadeus.com
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Security
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
[options]
packages = find:
package_dir =
gaspar = src/gaspar
include_package_data = True
zip_safe = False
python_requires = >=3.8
setup_requires =
setuptools_scm
[options.packages.find]
where = src
include = gaspar*
exclude = tests*
[tool.setuptools_scm]
write_to = src/gaspar/_version.py
[options.entry_points]
console_scripts =
gaspar = gaspar.cli.main:main
[options.package_data]
gaspar =
examples/*.yaml
examples/*.py
examples/documents/*.txt
[options.extras_require]
test =
pytest >=7.0
pytest-cov >=4.0
pytest-mock >=3.0