forked from casework/CASE-Utilities-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (55 loc) · 1.47 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
59
60
61
[metadata]
name = case_utils
version = attr: case_utils.__version__
author = Alex Nelson
author_email = [email protected]
description = Python utilities for working with the CASE ontology
long_description = file: README_PyPI.md
long_description_content_type = text/markdown
url = https://github.com/casework/CASE-Utilities-Python
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 =
cdo-local-uuid >= 0.5.0, < 0.6.0
pandas
pyshacl >= 0.24.0
rdflib < 8
requests
tabulate
packages = find:
python_requires = >=3.9
[options.entry_points]
console_scripts =
case_file = case_utils.case_file:main
case_sparql_construct = case_utils.case_sparql_construct:main
case_sparql_select = case_utils.case_sparql_select:main
case_validate = case_utils.case_validate:main
[options.extras_require]
testing =
PyLD
mypy
pytest
python-dateutil
types-python-dateutil
[options.package_data]
case_utils = py.typed
case_utils.ontology =
*.ttl
ontology_and_version_iris.txt
[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