-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (34 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
from CanDI.__version__ import version
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='PyCanDI',
description='A cancer data integration package',
version=version,
packages=find_packages(exclude=['tests', 'test_*']),
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.11,<4.0',
install_requires=[
"pandas",
"configparser",
"requests",
"tqdm",
],
url = 'https://github.com/GilbertLabUCSF/CanDI',
entry_points={
'console_scripts': [
'candi-install = CanDI.setup.install:main',
'candi-uninstall = CanDI.setup.uninstall:main',
],
},
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
include_package_data=True,
setup_requires=['setuptools_scm'],
)