-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
52 lines (46 loc) · 1.27 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
[metadata]
name = jdmn-python-runtime
version = attr: jdmn.version.__version__
description = jdmn-python-runtime is a library that supports the execution of DMN
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/goldmansachs/jdmn-python-runtime
author = Octavian Patrascoiu
author_email = [email protected]
maintainer = Octavian Patrascoiu
maintainer_email = [email protected]
license = Apache 2.0
license_files =
LICENSE.txt
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
[project.urls]
"Homepage" = "https://github.com/goldmansachs/jdmn-python-runtime"
"Issues" = "https://github.com/goldmansachs/jdmn-python-runtime/issues"
[options]
packages = find_namespace:
package_dir =
=src
install_requires =
isodate
python-dateutil
tzdata
lxml
elementpath
tests_requires =
# framework that makes it easy to write small tests
pytest>=7.1.2
# allows generation of coverage reports with pytest
pytest-cov>=3.0.0
# checks style, syntax and other useful errors
pylint>=2.14.5
flake8>=4.0.1
# tox ci framework
tox>=3.25.1
include_package_data = True
python_requires = >=3.10
[options.packages.find]
where = src
[bdist_wheel]
universal = 1