-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
31 lines (27 loc) · 956 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
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="mgcount",
version="1.1.0",
description="RNA-seq counting tool",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/hitaandrea/MGcount",
author="Andrea Hita",
author_email="[email protected]",
license="GNU GENERAL PUBLIC LICENSE",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
packages=["mgcount"],
include_package_data=True,
package_data={"mgcount": ["data/*.csv"]},
install_requires=["pandas", "numpy", "scipy", "python-igraph", "pysam", "gtfparse==1.2.1"],
entry_points={"console_scripts": ["mgcount=mgcount.__main__:main"]},
)