-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (52 loc) · 1.44 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
51
52
53
54
55
56
57
58
[metadata]
#TODO
name = case_cli_example
version = attr: case_cli_example.__version__
#TODO
# author = Example Person
# author_email = [email protected]
#TODO
description = A mapping of Example Tool to CASE
license_files =
LICENSE
THIRD_PARTY_LICENSES.md
#TODO - PyPI will need a differently-written README.
long_description = file: README.md
long_description_content_type = text/markdown
#TODO
url = https://github.com/casework/CASE-Implementation-Example
classifiers =
# TODO
# Please select a Development Status in line with CASE community guidance:
# https://caseontology.org/resources/github_policies.html#development-statuses
# E.g.:
# Development Status :: 3 - Alpha
Enviroment :: Console
License :: OSI Approved :: Apache Software License
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 =
#TODO
case_cli_example = case_cli_example.cli:main
[options.extras_require]
testing =
case_utils[testing]
[options.package_data]
#TODO
case_cli_example = 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