-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 903 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 903 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
from setuptools import setup, find_packages
import glob
setup(
name='tamarind',
version='0.1.1',
description='A Python wrapper for the Tamarind.bio API',
url='https://github.com/data2code/tamarind',
author='Yingyao Zhou',
author_email='yingyao.zhou@novartis.com',
license= 'MIT',
python_requires=">=3.7",
zip_safe=False,
package_dir={'': 'src'},
packages=find_packages(where='src'),
scripts=glob.glob("bin/tmr*"), # this include all tmr command line tools
install_requires=['pandas',
'tqdm',
'requests',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
],
)