-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 995 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
from setuptools import setup, find_packages
import pathlib
# Путь к README-RU.md
here = pathlib.Path(__file__).parent.resolve()
readme_path = here / "README.md"
# Чтение описания с указанием кодировки
with open(readme_path, encoding="utf-8") as f:
long_description = f.read()
setup(
name="arduino-hid-emulator",
version="0.4.0",
description="A Python library for controlling Arduino HID devices",
long_description=long_description,
long_description_content_type="text/markdown",
author="Andrey Mishchenko",
author_email="msav@msav.ru",
url="https://github.com/mvandrew/arduino-hid-emulator",
packages=find_packages(),
install_requires=[
"pyserial",
"pyautogui",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)