-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
42 lines (40 loc) · 1.14 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
from setuptools import find_packages, setup
package_name = "api_server"
setup(
name=package_name,
description="Open-RMF API server",
version="0.2.0",
packages=find_packages(exclude=["tests"]),
author="Teo Koon Peng",
author_email="[email protected]",
keywords=["ROS", "RMF"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development",
],
install_requires=[
"fastapi~=0.109.0",
"aiofiles~=23.2.1",
"uvicorn[standard]~=0.28.0",
"python-socketio~=5.11.1",
"reactivex~=4.0.4",
"tortoise-orm~=0.21.4",
"pyjwt[crypto]~=2.8.0",
"pydantic~=2.8.0",
"schedule~=1.2.1",
"termcolor~=2.4.0",
],
extras_require={
"postgres": ["asyncpg~=0.29.0"],
"mysql": ["aiomysql~=0.1.1"],
"maria": ["aiomysql~=0.1.1"],
},
entry_points={
"console_scripts": [
"rmf_api_server=api_server.__main__:main",
],
},
license="Apache License, Version 2.0",
)