-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.all.py
47 lines (42 loc) · 1.08 KB
/
setup.all.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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("LICENSE") as f:
license = f.read()
tests_require = [
"mock",
"nose",
]
install_requires=[
"click>=8.0",
"flask",
"flask-migrate",
"flask-sqlalchemy",
"Jinja2>=3.0",
"matplotlib",
"numpy",
"pyyaml>=5.1",
"requests",
"SQLAlchemy>=1.3.10",
"tabulate",
]
setup(
name="mgi",
version="0.1.0",
description="MGI Sample Management and Tools",
author="Eddie Belter",
author_email="[email protected]",
license=license,
url="https://github.com/hall-lab/mgi-tk.git",
install_requires=install_requires,
entry_points="""
[console_scripts]
mgi=mgi.cli:cli
cw=cw.cli:cli
""",
setup_requires=["pytest-runner"],
test_suite="nose.collector",
tests_requires=tests_require,
packages=find_packages(include=["mgi", "mgi.entity", "mgi.pipelines", "mgi.refs", "mgi.samples", "cw", "cw.pipelines"], exclude=("tests")),
include_package_data=True,
package_data={"cw": ["pipelines/*", "resources/*"]},
)