-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
56 lines (51 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- 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.1.4",
author="Jakub Andrýsek",
author_email="email@kubaandrysek.cz",
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, python, open-source, spacemouse, spacenavigator, 3dconnection, 3d-mouse",
license="MIT",
packages=["pyspacemouse"],
install_requires=[
"easyhid",
],
extras_require={
"develop": [
"build",
"twine",
"mkdocs",
"mkdocs-material",
"mkdocs-glightbox",
"mkdocs-redirects",
"mkdoxy",
"mkdocs-open-in-new-tab",
"mkdocs-git-revision-date-localized-plugin",
],
},
zip_safe=False,
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"pyspacemouse=pyspacemouse.pyspacemouse_cli:main",
],
},
)