-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 713 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 713 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
from setuptools import setup, find_packages
install_requires = [
'requests>=2.22.0',
'hetnetpy',
'tqdm',
'pandas',
'matplotlib_venn',
'matplotlib>=3.1.1',
'seaborn',
'scikit-learn>=0.21.3',
'scipy>=1.3.1',
'wikidataintegrator==0.7.4'
]
setup(
name='data_tools',
author='Mike Mayers',
author_email='mmayers@scripps.edu',
url='https://github.com/mmayers12/data_tools',
version='0.0.8',
packages=find_packages(),
license='LICENSE',
description='Tools for manipulating data, particularly with the end goal of forming hetnet',
long_description=open('README.md').read(),
install_requires=install_requires,
python_requires='>=3.6',
)