-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
67 lines (58 loc) · 1.49 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
62
63
64
65
66
67
[metadata]
name = dicom-standard
# Package version is automatically filled by GitHub Actions workflow
version = 0.1.0
description = Parse the DICOM Standard into a human-friendly JSON format.
long_description = file: README.md
long_description_content_type= text/markdown
url = https://github.com/innolitics/dicom-standard
author = Innolitics, LLC
author_email = [email protected]
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Healthcare Industry
Topic :: Scientific/Engineering :: Medical Science Apps.
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
keywords =
dicom
standard
json
[options]
python_requires = >= 3.7
packages = find:
install_requires =
beautifulsoup4
[options.packages.find]
exclude =
tests
[options.data_files]
standard =
standard/attributes.json
standard/ciod_to_func_group_macros.json
standard/ciod_to_modules.json
standard/ciods.json
standard/confidentiality_profile_attributes.json
standard/macros.json
standard/macro_to_attributes.json
standard/modules.json
standard/module_to_attributes.json
standard/references.json
standard/sops.json
[options.extras_require]
dev =
tox
test =
pytest
requests
[flake8]
ignore = E501, W503
exclude = .tox,*.egg,build,data
select = E,W,F
max-line-length = 120
[mypy]
python_version = 3.7
ignore_missing_imports = true