-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
executable file
·36 lines (33 loc) · 1.25 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
from setuptools import setup
from scoary import __version__ as sv
setup(name='scoary',
version=sv,
description='Microbial pan-GWAS using the output from Roary',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Intended Audience :: Science/Research',
],
keywords=['microbial', 'genomics', 'GWAS', 'Roary'],
url='https://github.com/AdmiralenOla/Scoary',
download_url=('https://github.com/AdmiralenOla/Scoary/tarball/v%s' % sv),
author='Ola Brynildsrud',
author_email='[email protected]',
license='GPLv3',
packages=['scoary'],
install_requires=[
'scipy>=0.16',
'argparse'
],
test_suite='nose.collector',
tests_require=[],
entry_points={
'console_scripts': ['scoary=scoary.methods:main',
'scoary_GUI=scoary.GUI:main',
'vcf2scoary=scoary.vcf2scoary:main'],
},
include_package_data=True,
zip_safe=False)