-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (44 loc) · 1.31 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
"""
pywalc - setup.py
"""
import setuptools
import pywalc
with open("README.md") as file:
LONG_DESC = file.read()
VERSION = pywalc.__version__
DOWNLOAD = f"https://github.com/png261/pywalc/archive/{VERSION}.tar.gz"
setuptools.setup(
name="pywalc",
version=VERSION,
author="Phuong Nguyen",
author_email="[email protected]",
description="Change pywal color online",
long_description_content_type="text/markdown",
long_description=LONG_DESC,
keywords="pywalc wal colorscheme terminal-emulators changing-colorschemes",
license="MIT",
url="https://github.com/png261/pywalc",
download_url=DOWNLOAD,
classifiers=[
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
packages=["pywalc"],
entry_points={"console_scripts": ["pywalc=pywalc.__main__:main"]},
python_requires=">=3.5",
install_requires=[
"pywal>=3.3.0",
"fastapi>=0.97.0",
"uvicorn>=0.22.0",
"pycloudflared>=0.2.0",
"Jinja2>=3.1.2",
"python-multipart>=0.0.6",
"qrcode>=7.4.2",
"argparse>=1.4.0 ",
],
include_package_data=True,
zip_safe=False,
)