-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (51 loc) · 1.52 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = "2.0.0.rc01"
setup(
name="Felicity LabLink",
version=version,
description="Felicity LabLink unites lab instruments and LIMS, streamlining workflows and bringing joy to your lab's day.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="",
author="Aurthur Musendame",
author_email="aurthurmusendame@gmail.com",
url="",
packages=find_packages(include=['flablink', 'flablink.link', 'flablink.*']),
include_package_data=True,
zip_safe=False,
install_requires=[
"pyserial==3.5",
"alembic==1.9.2",
"pymysql==1.0.2",
"requests==2.24.0",
"sqlalchemy==1.4.31",
"schedule==0.6.0",
"fastapi==0.83.0",
"uvicorn==0.16.0",
"jinja2==3.0.3",
# "ndg-httpsclient",
# "pyopenssl",
# "pyasn1"
],
python_requires='>=3.6',
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
"dev": [
"pytest",
"coverage",
]
},
entry_points={
"console_scripts": ["flablink=flablink.cli:main"]
}
)