-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 760 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 760 Bytes
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
from setuptools import setup, find_packages
setup(
name="tapestry",
version="1.0.1",
author="John Davey",
author_email="johnomics@gmail.com",
description="Validate and edit small eukaryotic genome assemblies",
url="https://github.com/johnomics/tapestry",
packages=['tapestry'],
package_data={
'tapestry': ['report/template.html', 'report/static/*.js', 'report/static/*.css'],
},
test_suite = 'test',
scripts=['weave', 'clean'],
python_requires='>=3.6',
install_requires=[
'biopython',
'intervaltree',
'jinja2',
'numpy',
'pandas',
'plumbum',
'pysam',
'sqlalchemy>=1.4.0',
'tqdm',
]
)