-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (37 loc) · 1.17 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
"""wal_g810 - setup.py"""
import setuptools
try:
import wal_g810
except (ImportError):
print("error: wal_g810 requires Python 3.5 or greater.")
quit(1)
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = wal_g810.VERSION
DOWNLOAD = "https://github.com/MKJM2/wal_g810/archive/%s.tar.gz" % VERSION
setuptools.setup(
name="wal_g810",
version=VERSION,
author="Michał Kurek",
author_email="[email protected]",
description=" Automate g810 profile creation from generated pywal colors",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/MKJM2/wal_g810",
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",
],
install_requires="pywal >= 0.6.7",
scripts=['wal_g810.py'],
entry_points={
"console_scripts": ["wal-g810=wal_g810:main"]
},
python_requires=">=3.5",
include_package_data=True
)