-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (33 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'docs/README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pydhgripper',
version='0.1.2',
description='Python library for controlling the DH gripper',
long_description=long_description,
packages=find_packages(),
author='Yu Jie, Xudong Han',
url='https://github.com/han-xudong/pyDHgripper',
install_requires=[
'crcmod==1.7',
'pyserial==3.5',
],
python_requires='>=3.6',
keywords=['DH gripper', 'robotics', 'robotic gripper'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)