-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (52 loc) · 1.44 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
48
49
50
51
52
53
from setuptools import setup, find_packages
setup(
name='fastshot',
version='1.1.12',
packages=find_packages(),
include_package_data=True,
install_requires=[
"pyautogui",
"pynput",
"pillow",
"screeninfo",
"mss",
"Pillow",
"pyperclip",
"pywin32",
"paddleocr",
"paddlepaddle",
"customtkinter",
"flask",
"configparser",
"openai",
"httpx>=0.24.0"
],
package_data={
'fastshot': [
'config.ini',
'_config_reset.ini',
'plugins/*',
'web/templates/*.html',
'web/static/css/*.css',
'web/static/js/*.js',
'web/static/images/*.png',
],
},
entry_points={
'console_scripts': [
'fastshot = fastshot.main:main',
],
},
author='Jim T',
author_email='[email protected]',
description='A versatile screen capturing tool with annotation and OCR features',
long_description=open('README.md', encoding='utf-8').read(), # 使用 UTF-8 编码
long_description_content_type='text/markdown',
url='https://github.com/jimeverest/fastshot',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
)