-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
52 lines (46 loc) · 1.41 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
[metadata]
name = linuxforhealth-csvtofhir
version = attr: linuxforhealth.csvtofhir.__version__
url = https://github.com/LinuxForHealth/CsvToFHIR
description = Maps and converts delimited data to FHIR resources.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0 License
platform = any
keywords = linuxforhealth, fhir, csv, healthit, edi, hl7
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Intended Audience :: Healthcare Industry
Intended Audience :: Developers
Intended Audience :: Information Technology
[options]
install_requires =
deepdiff >=5.8, <6.0
fhir.resources >=6.4, <7.0
pandas >=1.4 ,<1.5
pydantic >=1.9, <2.0
python-dotenv >=0.20, <1.0
python-dateutil >=2.8, <3.0
pytz ==2022.1
package_dir =
= src
python_requires = >=3.9
packages = find_namespace:
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
csvtofhir = linuxforhealth.csvtofhir.cli.main:main
[options.extras_require]
dev = pytest >=7.1, <8.0;flake8 >=4.0, <5.0;autopep8 >=1.6, <2.0;isort >= 5.10, <6.0
notebook = jupyterlab
optimized-streaming = smart_open >=6.2.0
[flake8]
max-line-length=120
recursive = true
aggressive = 3