-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
executable file
·41 lines (36 loc) · 1.08 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
"""
AGFusion is a python package to annotate and visualize gene fusions.
"""
import re
from setuptools import find_packages, setup
VERSIONFILE = "agfusion/version.py"
version = open(VERSIONFILE, "rt", encoding="utf8").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, version, re.M)
if mo:
version = mo.group(1)
else:
raise RuntimeError(f"Unable to find version string in {VERSIONFILE}.")
README = open("README.md", encoding="utf8").read()
setup(
# version=version,
version="1.4.3",
name="agfusion",
packages=find_packages(),
description="Python package to annotate and visualize gene fusions.",
author="Charles Murphy",
author_email="[email protected]",
license="MIT",
url="https://github.com/murphycj/AGFusion",
long_description=README,
long_description_content_type="text/markdown",
include_package_data=True,
scripts=["bin/agfusion"],
install_requires=[
"matplotlib>=1.5.0",
"pandas>=0.18.1",
"biopython>=1.67",
"future>=0.16.0",
"pyensembl>=1.1.0",
],
)