-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 885 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
"aiohttp==3.8.1",
"aiohttp_cors==0.7.0",
"bleach==4.1.0",
"uvloop==0.14.0",
"data-access-layer==3.0.*",
]
# requests is required by movai-core-shared
# aioredis is required by data-access-layer
setuptools.setup(
name="gd-node",
version="3.0.2-1",
author="Backend team",
author_email="[email protected]",
description="GD_Node",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MOV-AI/gd-node",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=["Programming Language :: Python :: 3"],
install_requires=requirements,
entry_points={
"console_scripts": [
"gd_node = gd_node.__main__:main",
]
},
)