-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 998 Bytes
/
setup.py
File metadata and controls
39 lines (36 loc) · 998 Bytes
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
"""
setup script for inovopy
"""
from setuptools import setup, find_packages
from pathlib import Path
VERSION = "1.0.1"
DESCRIPTION = "Inovo Robot Arm API"
LONG_DESCRIPTION = (Path(__file__).parent / "README.md").read_text()
# Setting up
setup(
name="inovopy",
version=VERSION,
author="Alan Chung",
author_email="deeralan827@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["numpy", "roslibpy"],
keywords=[
"python",
"robotics",
"inovo robotics",
"inovo robot arm",
"motion",
"sockets",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)