-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 984 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
import os
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="pyrefinebio",
version=os.getenv("VERSION"),
author="Childhood Cancer Data Lab",
author_email="ccdl@alexslemonade.org",
description="A python client for the refine.bio API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AlexsLemonade/refinebio-py",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent", # not sure if this is actually true - we should probably test on windows!
],
python_requires=">=3.6",
install_requires=["iso8601", "PyYAML", "requests", "Click", "pytimeparse", "pyrate-limiter<3"],
entry_points="""
[console_scripts]
refinebio=pyrefinebio.script:cli
""",
)