-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
47 lines (46 loc) · 1.22 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
from setuptools import find_packages, setup
test_deps = [
"nbmake",
"pytest-xdist",
"pre-commit",
"nbstripout",
"parameterized",
]
notebook_deps = ["ipython", "ipywidgets"]
autoprotocol_deps = ["autoprotocol", "transcriptic"]
extras = {
"test": test_deps,
"notebook": notebook_deps,
"autoprotocol": autoprotocol_deps,
}
setup(
name="labop",
description="Laboratory Open Procotol Language",
version="1.0a2",
python_requires=">=3.8",
install_requires=[
"sbol3",
"sparqlwrapper",
"python-dateutil",
"sbol-factory",
"requests",
"graphviz",
"tyto>=1.3",
"numpy",
"openpyxl",
"pint>=0.18",
"requests_html",
"container-ontology @ https://github.com/rpgoldman/container-ontology/tarball/main",
"xarray>=0.20.2",
],
tests_require=test_deps,
extras_require=extras,
packages=find_packages(".", exclude=["*attic", "examples"]),
package_data={
"labop": ["inner/labop.ttl", "lib/*.ttl", "container-ontology.ttl"],
"labop_convert": ["markdown/template.xlsx"],
"uml": ["inner/uml.ttl"],
"labop_time": ["labop_time.ttl"],
},
include_package_data=True,
)