forked from cdisc-org/cdisc-rules-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 755 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 755 Bytes
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
#! /usr/bin/env python
import setuptools
from version import __version__
setuptools.setup(
name="cdisc-rules-engine",
version=__version__,
description="Open source offering of the cdisc rules engine",
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.8",
install_requires=[
"pandas>=1.3.5",
"business-rules-enhanced==1.3.4",
"python-dotenv==0.20.0",
"cdisc-library-client==0.1.4",
"odmlib==0.1.4",
"xport==3.6.1",
"redis==4.0.2",
"openpyxl==3.0.10",
"importlib-metadata==5.0.0",
],
)