-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1001 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
from setuptools import setup
import versioneer
dev_requires = ["pytest", "black", "flake8", "pre-commit"]
extras = {
"dev": dev_requires,
}
setup(
name="dendri",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Dendri Authors",
author_email="[email protected]",
description="Library for common healthcare related algorithms.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Naissant/dendri",
license="MIT",
packages=["dendri"],
install_requires=["pyspark>=3.1.1", "python-dateutil"],
extras_require=extras,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
],
python_requires=">=3.7",
)