forked from Opentrons/opentrons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·106 lines (93 loc) · 3.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Inspired by:
# https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
import sys
import codecs
import os
import os.path
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
sys.path.append(os.path.join(HERE, '..', 'scripts'))
from python_build_utils import normalize_version # noqa: E402
# make stdout blocking since Travis sets it to nonblocking
if os.name == 'posix':
import fcntl
flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL)
fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags & ~os.O_NONBLOCK)
def get_version():
buildno = os.getenv('BUILD_NUMBER')
if buildno:
normalize_opts = {'extra_tag': buildno}
else:
normalize_opts = {}
return normalize_version('api', **normalize_opts)
VERSION = get_version()
DISTNAME = 'opentrons'
LICENSE = 'Apache 2.0'
AUTHOR = "Opentrons"
EMAIL = "[email protected]"
URL = "https://github.com/OpenTrons/opentrons"
DOWNLOAD_URL = ''
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
]
KEYWORDS = ["robots", "protocols", "synbio", "pcr", "automation", "lab"]
DESCRIPTION = (
"The Opentrons API is a simple framework designed to make "
"writing automated biology lab protocols easy.")
PACKAGES = find_packages(where='src')
INSTALL_REQUIRES = [
'pyserial==3.5',
'numpy>=1.15.1',
'jsonschema>=3.0.2,<4',
'aionotify==0.2.0',
f'opentrons_shared_data=={VERSION}',
'typing-extensions>=3.7.4.3',
'pydantic==1.4',
]
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
with codecs.open(os.path.join(HERE, *parts), "rb", "utf-8") as f:
return f.read()
if __name__ == "__main__":
setup(
python_requires='>=3.7',
name=DISTNAME,
description=DESCRIPTION,
license=LICENSE,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
maintainer=AUTHOR,
maintainer_email=EMAIL,
keywords=KEYWORDS,
long_description=read("pypi-readme.rst"),
packages=PACKAGES,
zip_safe=False,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
package_dir={'': 'src'},
package_data={'opentrons': ['py.typed', 'package.json']},
entry_points={
'console_scripts': [
'opentrons_simulate = opentrons.simulate:main',
'opentrons_execute = opentrons.execute:main',
]
},
project_urls={
'opentrons.com': "https://www.opentrons.com",
'Source Code On Github':
"https://github.com/Opentrons/opentrons/tree/edge/api",
'Documentation': "https://docs.opentrons.com"
}
)