generated from jonn-smith/python_cli_template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (50 loc) · 1.68 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
from io import open
from setuptools import find_packages, setup
# following src dir layout according to
# https://blog.ionelmc.ro/2014/05/25/python-packaging/#the-structure
version = "0.6.14"
setup(
name="maslongbow",
version=version,
description="Annotation and segmentation of MAS-seq data",
url="https://broadinstitute.github.io/longbow/",
author="Kiran V Garimella, Jonn Smith",
author_email="[email protected], [email protected]",
license="BSD 3-Clause",
long_description=open("README.rst").read(),
install_requires=[
"cython",
"click",
"click-log",
"polyleven",
"pomegranate @ git+https://github.com/jonn-smith/pomegranate.git@d80ec9304bba4c42ee3943c887754fd78885cd55",
"pandas",
"numpy",
"matplotlib",
"ordered-set",
"pysam==0.19.1",
"progress",
"construct",
"pathos",
"ssw==0.4.1",
"tqdm",
"symspellpy"
],
tests_require=["coverage", "pytest"],
python_requires=">=3.6, <3.8",
packages=find_packages("src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
],
entry_points={"console_scripts": ["longbow=longbow.__main__:main_entry"]},
include_package_data=True,
)