-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
41 lines (38 loc) · 1.03 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
"""
python setup.py sdist bdist_wheel
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
"""
import setuptools
with open("README.md", "r") as fh:
readme = fh.read()
setuptools.setup(
name="dorna_gui",
version= "2.2",
author="Dorna Robotics",
author_email="[email protected]",
description="Dorna Gui",
long_description=readme,
long_description_content_type='text/markdown',
url="https://dorna.ai/",
project_urls={
'gitHub': 'https://github.com/dorna-robotics/dorna-gui',
},
packages=setuptools.find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
"setuptools",
"eventlet",
"dorna",
"flask-socketio",
"flask",
"PyYAML",
],
license="MIT",
include_package_data=True,
zip_safe = False,
)