-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (43 loc) · 1.77 KB
/
setup.py
File metadata and controls
44 lines (43 loc) · 1.77 KB
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
from setuptools import setup, find_packages
setup(
include_package_data=True,
name='kormochari',
version='0.0.1',
description='Automatic keyboard and mouse controlling system',
url='https://github.com/aratheunseen/kormochari',
author='Ashiqur Rahman Alif',
packages=['kormochari'],
install_requires=['pyobjc-core;platform_system=="Darwin"',
'pyobjc;platform_system=="Darwin"',
'python3-Xlib;platform_system=="Linux" and python_version>="3.0"',
'python-xlib;platform_system=="Linux" and python_version<"3.0"',
'pymsgbox',
'pytweening>=1.0.4',
'pyscreeze>=0.1.21',
'pyautogui',
'pygetwindow>=0.0.5',
'mouseinfo'],
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)