-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 914 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
34
35
36
import setuptools
from io import open
from os import path
# Get the long description from the README file
with open('README.md','r') as f:
long_description = f.read()
setuptools.setup(
name='cohorts',
version='0.3a0',
description='Proteomics exosome_pgf cohort structure',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ngiangre/cohorts',
author='Nicholas Giangreco',
author_email='npg2108@cumc.columbia.edu',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3'
],
keywords='clinical proteomics data management tool',
license='MIT',
packages=setuptools.find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'numpy',
'pandas',
'scipy',
'jupyter',
'ipyparallel',
'jupyter_nbextensions_configurator'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)