-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (44 loc) · 1.12 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('tenx/version.py') as f:
exec(f.read())
tests_require = [
"mock",
"nose",
]
install_requires=[
"biopython>=1.46",
"click>=7.0",
"Jinja2>=2.10.1",
"pyyaml>=5.1",
"requests>=2.20.0"
"SQLAlchemy>=1.3.10",
"tabulate",
"yoyo-migrations>=6.1.0",
]
setup(
name='tenx',
version=__version__,
description='10X Genomics CLI',
long_description=readme,
author='Eddie Belter',
author_email='ebetler@wustl.edu',
license=license,
url='https://github.com/hall-lab/tenx-gcp.git',
install_requires=install_requires,
entry_points='''
[console_scripts]
tenx=tenx.cli:cli
''',
setup_requires=["pytest-runner"],
test_suite="nose.collector",
tests_requires=tests_require,
packages=find_packages(include=['tenx'], exclude=('tests', 'docs')),
include_package_data=True,
package_data={"tenx": ["templates/*","templates/cromwell/*"]}
)
# -*- coding: utf-8 -*-