-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (44 loc) · 1.32 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
__author__ = "Vini Salazar"
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.24"
import setuptools
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setuptools.setup(
name="bioprov",
version="0.1.24",
author="Vini Salazar",
author_email="17276653+vinisalazar@users.noreply.github.com",
description="BioProv - Provenance capture for bioinformatics workflows",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/vinisalazar/BioProv",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
packages=setuptools.find_packages(),
scripts=["bioprov/bioprov"],
include_package_data=True,
keywords="w3c-prov biopython biological-data provenance",
python_requires=">=3.6",
install_requires=[
"biopython",
"coolname",
"coveralls",
"dataclasses",
"pandas",
"prov",
"provstore-api",
"pydot",
"pytest",
"pytest-cov",
"tqdm",
"tinydb",
],
)