-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (50 loc) · 1.61 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
45
46
47
48
49
50
51
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
long_description=''
setup(name='refselector',\
version='1.0.1',\
description='',\
long_description=long_description,\
url='https://github.com/merlyescalona/refselector',\
download_url='https://github.com/merlyescalona/refselector/blob/master/dist/refselector.1.0.1.tar.gz',\
author='Merly Escalona',\
author_email='merlyescalona@uvigo.es',\
license='GNU/GPL v3',\
packages=['refselector'],\
package_dir={'refselector': 'refselector'},\
py_modules=[\
'refselector.loggingformatter', \
'refselector.msatools', \
'refselector.tests', \
'refselector.refselector' \
],\
install_requires=[\
'argparse',\
'ConfigParser',\
'datetime',\
'logging',\
'numpy',\
'setuptools',\
'scipy'
],\
classifiers=[\
'Development Status :: 4 - Beta',\
'Intended Audience :: Education',\
'Intended Audience :: Science/Research',\
'Intended Audience :: Developers',\
'Topic :: Scientific/Engineering :: Bio-Informatics',\
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',\
'Programming Language :: Python :: 2.7'\
],\
keywords='biology phylogenomics next-generation-sequencing reference-sequences targeted-sequencing',\
python_requires='~=2.7',\
scripts=['bin/refselector'],\
entry_points={
'console_scripts':[\
'refselector=refselector.__main__:main'\
]\
},\
zip_safe=False\
)