-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (47 loc) · 1.41 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
from setuptools import setup, find_packages
setup(
name="OpenOligo",
version="0.1.8",
description="An open-source platform for programmatically interacting with and managing Nucleic acid sequences synthesis processes.",
license="Apache-2.0",
author="Satyam Tiwary",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
"rich>=13.4.2",
"python-dotenv>=1.0.0",
"tqdm>=4.65.0",
"fastapi>=0.98.0",
"pdocs>=1.2.0",
"uvicorn>=0.22.0",
"aerich>=0.7.1",
"types-tqdm>=4.65.0.1",
"tortoise-orm>=0.18.1",
"pydantic>=1.8.2",
"httpx>=0.24.1",
"sh>=2.0.4",
"anyio>=3.7.0",
"types-requests>=2.31.0.1",
"jupyer>=1.0.0",
"jupyerlab>=4.0.2",
"setuptools>=68.0.0",
],
extras_require={
"rpi": ["RPi.GPIO>=0.7.1"],
"bb": ["Adafruit_BBIO>=1.2.0"],
},
entry_points={
'console_scripts': [
'oligo-server=openoligo.scripts.server:main',
'oligo-runner=openoligo.scripts.runner:main',
'oligo=openoligo.scripts.orchestrator:main'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Embedded Systems",
],
python_requires='>=3.9',
)