-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·47 lines (42 loc) · 1.6 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
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup
install_requires = []
try:
import statistics
except ImportError:
install_requires.append('statistics')
setup(
name='XenoMapper',
version='1.0.2',
author='Matthew Wakefield',
author_email='matthew.wakefield@unimelb.edu.au',
packages=['xenomapper'],
include_package_data = True,
install_requires=install_requires,
url='https://github.com/genomematt/xenomapper.git',
license='GPLv3',
entry_points={
'console_scripts': ['xenomapper = xenomapper.xenomapper:main',
'xenomappability = xenomapper.mappability:main'
]
},
test_suite='xenomapper.tests.test_all',
description='xenomapper - mapping mixed reads from two species',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)