-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
33 lines (31 loc) · 993 Bytes
/
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
import setuptools
with open("README-pypi.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="evue",
version="0.1.6.1",
author="dragondjf",
author_email="[email protected]",
description="Evue is a high-performance gui framework base an html/css which can run on windows/linux/macos/ios/andriod/rtos! Write once, run everywhere! ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/scriptiot/evm",
packages=setuptools.find_packages(),
install_requires=[
"flet==0.3.2",
"pyee>=9.0.4",
"loguru>=0.6.0",
"pyperclip>=1.8.2",
"pillow>=9.3.0",
"qrcode>=7.3.1",
],
extras_require={
'dev': []
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3'
],
python_requires='>=3.7',
)