-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 993 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 993 Bytes
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
from setuptools import setup, find_packages
setup(
name="auto-input", # Replace with your package's name
version="0.2.0-alpha", # Replace with your version
description="A tool for automating input using Python.",
author="Your Name", # Replace with your name
author_email="your.email@example.com", # Replace with your email
url="https://github.com/yourusername/auto-input", # Replace with your project's URL
packages=find_packages(), # Automatically find packages in your project
install_requires=[
"pynput",
"bidict",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Windows",
],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"auto-input=project.autoinput:main",
],
},
include_package_data=True, # Includes non-Python files like `config.json`
)