-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
47 lines (42 loc) · 1.2 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
[metadata]
name = case_prov
version = attr: case_prov.__version__
author = Alex Nelson
author_email = alexander.nelson@nist.gov
description = A mapping of CASE to W3C PROV
long_description = file: README_PyPI.md
long_description_content_type = text/markdown
url = https://github.com/casework/CASE-Implementation-PROV
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
license_files =
LICENSE
THIRD_PARTY_LICENSES.md
[options]
include_package_data = true
install_requires =
case_utils >=0.9.0,< 0.10.0
prov
pydot
packages = find:
python_requires = >=3.7
[options.entry_points]
console_scripts =
case_prov_check = case_prov.case_prov_check:main
case_prov_dot = case_prov.case_prov_dot:main
case_prov_rdf = case_prov.case_prov_rdf:main
[options.package_data]
case_prov = py.typed
case_prov.queries = *.sparql
case_prov.shapes = *.ttl
[flake8]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
extend-ignore =
E203
E501
[isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
profile = black