forked from Bioprotocols/labop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (55 loc) · 1.48 KB
/
setup.py
File metadata and controls
56 lines (55 loc) · 1.48 KB
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
51
52
53
54
55
56
from setuptools import setup
test_deps = ["nbmake", "pytest-xdist", "pre-commit", "nbstripout"]
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=[
"labop",
"labop_convert",
"labop_convert.autoprotocol",
"labop_convert.markdown",
"labop_convert.opentrons",
"labop_convert.emeraldcloud",
"labop.lib",
"labop.inner",
"labop.utils",
"labop_time",
"uml",
"uml.inner",
"examples",
"owl_rdf_utils",
],
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,
)