-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.05 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name = 'mecan4cna',
version = '0.28',
description = 'Minimum Error Calibration and Normalization for Copy Number Analysis',
long_description = readme(),
license = 'MIT',
url='https://github.com/baudisgroup/mecan4cna',
author = 'Bo Gao',
author_email = '[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords = 'calibration normalization copy number',
packages = ['mecan4cna'],
install_requires = [
'click=7.1.2',
'pandas==1.1.2',
'numpy',
'matplotlib==2.0.2'
],
python_requires = '>=3.6',
entry_points = {
'console_scripts': ['mecan4cna = mecan4cna.cli:main']
},
include_package_data = True
)