-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (43 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import Extension
from setuptools.command.build_ext import build_ext
from setuptools import setup, find_packages
from os.path import dirname, join, abspath
version = "4.4"
# main
file_path = join(abspath(dirname(__file__)), "README.md")
with open(file_path) as f:
long_description = f.read()
# Let's first try to install the normal version
setup(
name="auto_everything",
version=version,
description="do automate things on Linux",
python_requires=">=3.10",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System",
"License :: OSI Approved :: MIT License",
],
keywords="Linux system automation",
url="http://github.com/yingshaoxo/auto_everything",
author="yingshaoxo",
author_email="[email protected]",
license="MIT",
install_requires=[
"setuptools",
],
extras_require={
#"database": ["pymongo"],
#"video": ["librosa", "numpy", "moviepy", "torchaudio", "vosk"],
#"gui": ["numpy", "opencv-python", "pyscreenshot", "pytesseract", "pyautogui"],
#"fakecamera": ["pyfakewebcam", "opencv-python"],
#"image": ["pillow"],
#"all": ["o365", "textrank4zh", "summa"],
},
packages=["auto_everything"],
include_package_data=True,
package_data={'auto_everything': ['*.txt', "*.md", "*.c", "*.sh", "*.cpp", "*.proto"]},
)