-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (30 loc) · 975 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
#!/usr/bin/python3
from setuptools import setup
setup(
name="redpaper",
version="0.2.0",
install_requires=[
"docutils>=0.3",
"praw",
"pillow",
"requests",
"pygobject",
"xdg",
],
# metadata to display on PyPI
author="Teddy Okello",
author_email="[email protected]",
description="A program to download and change desktop wallpapers from reddit",
keywords="change wallpaper reddit in linux desktop gnome kde xfce budgie",
url="https://github.com/keystroke3/redpaper",
license="GPLv3+",
package_dir={"": "src"},
project_urls={
"Bug Tracker": "https://github.com/keystroke3/redpaper/issues",
"Documentation": "https://github.com/keystroke3/redpaper/blob/master/README.md",
"Source Code": "https://github.com/keystroke3/redpaper",
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
)