pywal/setup.py

40 lines
1.2 KiB
Python
Raw Normal View History

2017-06-20 06:42:47 -04:00
"""wal - setup.py"""
2019-09-27 13:37:23 -04:00
import sys
2019-09-27 13:44:51 -04:00
import setuptools
try:
import pywal
except ImportError:
2017-08-09 10:44:43 -04:00
print("error: pywal requires Python 3.5 or greater.")
2019-09-27 13:37:23 -04:00
sys.exit(1)
2017-06-22 00:29:26 -04:00
2018-03-18 01:09:34 -04:00
LONG_DESC = open('README.md').read()
VERSION = pywal.__version__
DOWNLOAD = "https://github.com/dylanaraps/pywal/archive/%s.tar.gz" % VERSION
2017-06-25 20:23:43 -04:00
2017-07-06 07:18:34 -04:00
setuptools.setup(
2017-06-22 00:10:44 -04:00
name="pywal",
2017-06-25 20:23:43 -04:00
version=VERSION,
2017-06-20 06:42:47 -04:00
author="Dylan Araps",
author_email="dylan.araps@gmail.com",
2018-05-25 02:10:57 -04:00
description="Generate and change color-schemes on the fly",
2018-03-18 01:11:38 -04:00
long_description_content_type="text/markdown",
2017-07-25 02:22:15 -04:00
long_description=LONG_DESC,
2018-01-01 19:20:24 -05:00
keywords="wal colorscheme terminal-emulators changing-colorschemes",
2017-06-20 06:42:47 -04:00
license="MIT",
2017-06-23 19:30:05 -04:00
url="https://github.com/dylanaraps/pywal",
download_url=DOWNLOAD,
2017-06-22 09:19:28 -04:00
classifiers=[
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
2017-08-12 04:44:00 -04:00
"Programming Language :: Python :: 3.5",
2017-06-22 09:19:28 -04:00
"Programming Language :: Python :: 3.6",
],
2017-06-26 20:43:23 -04:00
packages=["pywal"],
entry_points={"console_scripts": ["wal=pywal.__main__:main"]},
2017-08-12 04:44:00 -04:00
python_requires=">=3.5",
2017-06-26 21:53:40 -04:00
test_suite="tests",
2018-01-01 19:20:24 -05:00
include_package_data=True,
zip_safe=False)