-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
34 lines (30 loc) · 972 Bytes
/
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
#! /usr/bin/env python
import setuptools
from version import __version__
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="cdisc-rules-engine",
version=__version__,
description="Open source offering of the cdisc rules engine",
long_description=long_description,
long_description_content_type="text/markdown",
author="cdisc-org",
url="https://github.com/cdisc-org/cdisc-rules-engine",
packages=setuptools.find_packages(exclude=["scripts", "tests"]),
license="MIT",
include_package_data=True,
python_requires=">=3.9",
install_requires=[
"pandas>=1.3.5",
"business_rules_enhanced==1.4.5",
"python-dotenv==0.20.0",
"cdisc-library-client==0.1.6",
"odmlib==0.1.4",
"xport==3.6.1",
"redis==4.0.2",
"openpyxl==3.1.5",
"importlib-metadata==8.5.0",
],
)