-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (32 loc) · 1.4 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
from distutils.core import setup
long_description = """
# BiomationScripter
This is a python package containing a set of tool to help with writing automation protocols for various liquid handling robots. There are also a set of generic tools which may help with writing protocols for multiple automation equipment
[ReadTheDocs](https://biomationscripterlib.readthedocs.io) for the current version.
## Getting Started
* https://biomationscripterlib.readthedocs.io/en/latest/Getting-Started
## BiomationScripter - Generic Tools
* https://biomationscripterlib.readthedocs.io/en/latest/BiomationScripter
## EchoProto
* https://biomationscripterlib.readthedocs.io/en/latest/EchoProto
* https://biomationscripterlib.readthedocs.io/en/latest/EchoProto_Templates
## OTProto
* https://biomationscripterlib.readthedocs.io/en/latest/OTProto
* https://biomationscripterlib.readthedocs.io/en/latest/OTProto_Templates
"""
setup(
name='BiomationScripter',
version='1.0.0',
description='Tools for scripting bio-automation protocols',
long_description = long_description,
long_description_content_type = "text/markdown",
author='Bradley Brown',
author_email='[email protected]',
packages=[
'BiomationScripter',
'BiomationScripter.EchoProto',
'BiomationScripter.OTProto',
'BiomationScripter.EchoProto.Templates',
'BiomationScripter.OTProto.Templates'
],
)