-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.02 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
import requests
import setuptools
PROJECT_REPOSITORY: str = "https://github.com/Abdul-Muiz-Iqbal/Automaton"
PROJECT_VERSION: str = requests.get(f"{PROJECT_REPOSITORY}/releases/latest").url.split(
"/"
)[-1]
with open("README.md", "r") as f:
PROJECT_DESCRIPTION: str = f.read()
setuptools.setup(
name="automaton-linux",
packages=setuptools.find_packages(),
version=PROJECT_VERSION,
license="MIT",
description="An automation library for linux.",
long_description=PROJECT_DESCRIPTION,
long_description_content_type="text/markdown",
author="Abdul Muiz Iqbal",
author_email="[email protected]",
url="https://github.com/Abdul-Muiz-Iqbal/Automaton/",
download_url=f"{PROJECT_REPOSITORY}/archive/refs/tags/{PROJECT_VERSION}.tar.gz",
keywords=["automation", "linux", "uinput"],
install_requires=["evdev", "multiprocess"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
)