-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (45 loc) · 1.39 KB
/
setup.py
File metadata and controls
50 lines (45 loc) · 1.39 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
45
46
47
48
49
50
from setuptools import find_packages, setup
# Meta information
version = open('VERSION').read().strip()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
# Basic info
name='ginput-glisignoli',
version=version,
author='Gino Lisignoli',
author_email='glisignoli@gmail.com',
url='https://github.com/glisignoli/python-ginput',
description='Send keystrokes to a virtual keyboard',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Bug Tracker": "https://github.com/glisignoli/python-ginput/issues",
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
],
# Packages and depencies
package_dir={'': 'src'},
packages=find_packages(where="src"),
install_requires=['libevdev==0.10', 'pyperclip==1.8.2'],
extras_require={
'dev': [
'autopep8'
],
},
# Scripts
entry_points={
'console_scripts': [
'ginput=ginput.command_line:main'],
},
# Other configurations
zip_safe=False,
platforms='any',
python_requires=">=3.10",
)