-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (32 loc) · 1.24 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
import sys
import setuptools
import pywalfox.config
LONG_DESC=open('README.md').read()
VERSION=pywalfox.config.DAEMON_VERSION
DOWNLOAD = "https://github.com/Frewacom/pywalfox-native/archive/v%s.tar.gz" % VERSION
setuptools.setup(
name="pywalfox",
version=VERSION,
author="Fredrik Engstrand",
author_email="fredrik@engstrand.nu",
description="Native app used alongside the Pywalfox browser extension",
long_description_content_type="text/markdown",
long_description=LONG_DESC,
keywords="dynamic browser-theme firefox chrome duckduckgo unixporn native-messaging-host pywal colorscheme",
license="MPL-2.0",
url="https://github.com/frewacom/pywalfox",
download_url=DOWNLOAD,
classifiers=[
"Topic :: Utilities",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
packages=["pywalfox"],
entry_points={"console_scripts": ["pywalfox=pywalfox.__main__:main"]},
python_requires=">=2.7",
include_package_data=True,
zip_safe=False)