-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
68 lines (59 loc) · 1.69 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
67
68
#!/usr/bin/env python3
import os
from distutils.core import setup
from setuptools import find_packages
author = 'Abdallah Meknas'
classifiers = """
Development Status :: 3 - Alpha
Environment :: Console
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
""".strip().split('\n')
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
exec(open('sequenoscope/version.py').read())
setup(
name='sequenoscope',
include_package_data=True,
version='1.0.0',
python_requires='>=3.7.0',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=find_packages(exclude=['tests']),
url='https://github.com/phac-nml/sequenoscope',
license='GPLv3',
author='Abdallah Meknas',
author_email='[email protected]',
description=(
'Description'),
keywords='Keywords',
classifiers=classifiers,
package_dir={'sequenoscope': 'sequenoscope'},
package_data={
"": ["*.csv", "*txt"],
},
install_requires=[
'biopython',
'numpy',
'pandas>=1.5',
'plotly',
'psutil',
'pysam',
'pytest',
'scipy',
'seqtk',
'simplejson',
'six'
],
entry_points={
'console_scripts': [
'sequenoscope=sequenoscope.main:main',
],
},
)