forked from JakubAndrysek/PySpaceMouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 988 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
# -*- coding: utf-8 -*-
import setuptools
import pathlib
HERE = pathlib.Path(__file__).parent
# The text of the README file
long_description = (HERE / "README.md").read_text()
setuptools.setup(
name='pyspacemouse',
version='1.0.3',
author='Jakub Andrýsek',
author_email='[email protected]',
description='Multiplatform Python interface to the 3DConnexion Space Mouse - forked from pyspacenavigator',
url='https://github.com/JakubAndrysek/pyspacemouse',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='pyspacemouse, 3d, 6 DoF, HID',
license='MIT',
packages=['pyspacemouse'],
install_requires=[
"easyhid",
"typing",
],
zip_safe=False,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)