-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.1 KB
/
setup.py
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = {}
with open("src/usdm_info/__init__.py") as fp:
exec(fp.read(), version)
setuptools.setup(
name="usdm",
version=version["__package_version__"],
author="D Iberson-Hurst",
author_email="",
description="A python package for using the CDISC TransCelerate USDM",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"pandas",
"openpyxl",
"pydantic",
"requests",
"stringcase",
"yattag",
"docraptor",
"bs4",
"pyyaml",
"fhir.resources",
],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
package_data={"usdm_excel": ["data/*.yaml", "data/*.json"]},
tests_require=["pytest"],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
)