forked from karel-brinda/samsift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (47 loc) · 1.23 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# see https://github.com/pypa/sampleproject
import setuptools
import os
import sys
if sys.version_info < (3,2):
sys.exit('Minimum supported Python version is 3.2')
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# Get the current version
exec(open("samsift/version.py").read())
setuptools.setup(
name='samsift',
version=VERSION,
description='SAMsift - sift your alignments',
long_description=long_description,
url='https://github.com/karel-brinda/samsift',
author='Karel Brinda',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: Unix',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='NGS SAM alignment',
packages = ["samsift"],
install_requires=[
'pysam',
'wheel',
],
package_data={
'samsift': [
'*.py',
],
},
entry_points={
'console_scripts': [
'samsift = samsift.samsift:main',
],
},
)