-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (44 loc) · 1.21 KB
/
setup.cfg
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
[metadata]
#TODO
name = case_dfxml
version = attr: case_dfxml.__version__
author = Alex Nelson
author_email = alexander.nelson@nist.gov
description = A mapping between DFXML and CASE
license_files =
LICENSE
#TODO - PyPI will need a differently-written README.
long_description = file: README.md
long_description_content_type = text/markdown
#TODO
url = https://github.com/ajnelson-nist/case-implementation-dfxml
classifiers =
Development Status :: 3 - Alpha
Enviroment :: Console
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Software Development :: Testing
[options]
install_requires =
case_utils >= 0.16.0, < 0.17.0
packages = find:
python_requires = >=3.9
[options.entry_points]
console_scripts =
case_to_dfxml = case_dfxml.case_to_dfxml:main
dfxml_to_case = case_dfxml.dfxml_to_case:main
[options.extras_require]
testing =
case_utils[testing]
[options.package_data]
case_dfxml = py.typed
[flake8]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
extend-ignore =
E203
E302
E501
[isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
profile = black