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
34 lines (30 loc) · 973 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 973 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
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.0",
"python-dotenv==0.20.0",
"cdisc-library-client==0.1.5",
"odmlib==0.1.4",
"xport==3.6.1",
"redis==4.0.2",
"openpyxl==3.0.10",
"importlib-metadata==5.0.0",
],
)