-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
36 lines (33 loc) · 975 Bytes
/
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, find_packages
from glob import glob
import os
import platform
import versioneer
__author__ = "Knights Lab"
__copyright__ = "Copyright (c) 2016--, %s" % __author__
__credits__ = ["Kaiwei Ang", "Gabe Al-Ghalith", "Benjamin Hillmann"]
__email__ = "[email protected]"
__license__ = "AGPL"
__maintainer__ = "Benjamin Hillmann"
long_description = 'All of your shi7 in one place. From quality scores to mappable reads.'
setup(
name='shi7',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
package_data={'shi7': ['adapters/*.fa']},
url='',
license=__license__,
author=__author__,
author_email=__email__,
description='',
long_description=long_description,
keywords='',
install_requires=[],
entry_points={
'console_scripts': [
'shi7 = shi7.shi7:main',
'shi7_learning = shi7.shi7_learning:main'
]
},
)