-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.23 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.23 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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
except FileNotFoundError:
long_description = "An AI-powered Python package for natural, human-like mouse and keyboard control."
setup(
name="the-bumblebee",
version="1.0.2",
description="An AI-powered Python package for natural, human-like mouse and keyboard control.",
long_description=long_description,
long_description_content_type="text/markdown",
author="socioy",
author_email="bumblebee@socioy.com",
url="https://github.com/socioy/bumblebee",
packages=find_packages(include=["bumblebee", "bumblebee.*"]),
include_package_data=True,
install_requires=[
"numpy>=2.2.4",
"torch>=2.6.0",
"scipy>=1.15.2",
"pynput>=1.8.1",
"PyAutoGUI>=0.9.54",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.11", # Adjust for more Python versions if necessary
)