-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name='serum_readfilter',
version='1.0',
description='filters read against a small database of interest',
url='https://github.com/ssi-dk/serum_readfilter',
# Author details
author='Kim Ng',
author_email='[email protected]',
# Choose your license
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'serum_readfilter = serum_readfilter.serum_readfilter:main',
]
},
include_package_data=True,
data_files=[('config', ['serum_readfilter/config.yaml'])],
package_data={'serum_readfilter': ['tests/*']},
test_suite='nose.collector',
tests_require=['SerumReadFilter']
)