-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
45 lines (39 loc) · 1.49 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
from setuptools import find_packages, setup
from fusion_report.settings import Settings
PACKAGE_DATA = {"fusion_report": ["data/schema/*.sql" "arguments.json", "templates/*/*"]}
with open("README.md") as f:
README = f.read()
with open("requirements.txt") as f:
INSTALL_REQUIREMENTS = f.read().splitlines()
setup(
name="fusion_report",
version=Settings.VERSION,
python_requires=">=3.6",
description="Tool for parsing outputs from fusion detection tools.",
long_description=README,
author="Martin Proks",
author_email="mproksik@gmail.com",
url="https://github.com/matq007/fusion-report",
license="GPL_v3",
packages=find_packages(exclude=("tests", "docs")),
install_requires=INSTALL_REQUIREMENTS,
zip_safe=False,
scripts=["bin/fusion_report"],
classifiers=[
"Natural Language :: English",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
package_data=PACKAGE_DATA,
include_package_data=True,
)