-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.42 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
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
setup(
name="arduino_hid_controller",
version='{{VERSION_PLACEHOLDER}}',
author="Duelist",
author_email="[email protected]",
description="Python library to control Arduino as HID (Keyboard/Mouse) via Serial",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/duelist-dev/arduino-hid-controller",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
'pyserial>=3.5',
'pynput>=1.7.6',
'pyautogui>=0.9.53'
],
extras_require={
'dev': [
'twine>=4.0.2',
'wheel>=0.38.4'
]
},
classifiers=[
'Programming Language :: Python :: 3',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Topic :: System :: Hardware"
],
python_requires=">=3.7",
project_urls={
"Source": "https://github.com/duelist-dev/arduino-hid-controller"
},
keywords=[
'arduino',
'hid',
'keyboard',
'mouse',
'automation',
'serial'
],
include_package_data=True,
)