-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (29 loc) · 1.11 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pccloner',
version='0.1.8',
description= "Clone your repetitive PC tasks",
py_modules = ['pccloner.pcdata', 'pccloner.pctask_press', 'pccloner.pctask_pr', 'pccloner.win11', 'pccloner.ubuntu', 'pccloner.utils'],
packages = find_packages(),
package_dir = {'':'src'},
long_description = long_description,
long_description_content_type = 'text/markdown',
install_requires = ['pynput >= 1.7.6',
'pyautogui >= 0.9.54',
'keyboard >= 0.13.5',
'pandas >= 2.1.4',
'py7zr >= 0.22.0',
'mss >= 9.0.2',
],
url="https://github.com/ezamorag/pccloner",
author="Erik Zamora",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)