-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 2.33 KB
/
setup.py
File metadata and controls
50 lines (48 loc) · 2.33 KB
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
#!/usr/bin/env python3
import setuptools
from setuptools import find_packages
setuptools.setup(name='wlkata-mirobot-python',
version='0.1.14',
description="WKlata Mirobot Python SDK",
author='Shunkai Xing',
author_email='xingshunkai@qq.com',
long_description=open("README.rst", "r", encoding="utf-8").read(),
long_description_content_type = 'text/markdown',
url="https://github.com/mushroom-x/wlkata-mirobot-python",
packages=find_packages(exclude=["script", "example", "doc"]),
classifiers="""
Development Status :: 4 - Beta
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
Topic :: Scientific/Engineering
Topic :: Education
Topic :: Documentation
Topic :: Home Automation
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Topic :: Scientific/Engineering :: Image Recognition
Topic :: Software Development :: Embedded Systems
Topic :: Software Development :: Version Control :: Git
Topic :: Terminals :: Serial
Intended Audience :: Education
Intended Audience :: Science/Research
Intended Audience :: Manufacturing
Intended Audience :: Developers
""".splitlines(),
python_requires='>=3.6',
install_requires=[
'pyserial',
],
package_data={
'wlkata_mirobot': ['resources/*'],
}
)