-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (46 loc) · 1.86 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
import setuptools
from io import open
import os
version_module = {}
dirname = os.path.dirname(__file__)
with open(os.path.join(dirname, "src/papolarity/version.py")) as fp:
exec(fp.read(), version_module)
__version__ = version_module['__version__']
with open(os.path.join(dirname, "README.md"), encoding='utf8') as fh:
long_description = fh.read()
setuptools.setup(
name="papolarity",
version=__version__,
author="Ilya Vorontsov",
author_email="[email protected]",
description="Papolarity is a tool to analyze polarity of transcriptomic alignments such as Ribo-seq and RNA-seq.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/autosome-ru/papolarity",
license="Papolarity is licensed under WTFPL, but if you prefer more standard licenses, feel free to treat it as MIT license",
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
keywords='bioinformatics NGS coverage alignment polarity Ribo-seq RNA-seq',
classifiers=[
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
python_requires='>=3.7',
install_requires=['pybedtools >= 0.8.0', 'numpy >= 1.8.0', 'sklearn', 'six', 'matplotlib', 'seaborn'],
extras_require={
'dev': ['pytest', 'pytest-benchmark', 'flake8', 'tox', 'wheel', 'twine', 'setuptools_scm'],
},
entry_points={
'console_scripts': [
'papolarity=papolarity.cli:main',
],
},
use_scm_version=False,
setup_requires=['setuptools_scm'],
)