-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.06 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name = "WallPoppy",
version = "0.1.0",
description = "Simple wallpaper daemon using feh",
long_description = readme,
author = "Oliver Hattshire",
author_email = "[email protected]",
url = "https://github.com/hattshire/wallpoppy",
keywords = "dbus wallpaper daemon pictures desktop",
license = "Unlicense",
packages = find_packages(),
package_data = {
'': ["*.rst"]
},
install_requires = [
"pydbus", "pygobject"
],
entry_points = {
'console_scripts': [
'wallpoppyd=Wallpoppy:run',
],
},
zip_safe = True,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Environment :: No Input/Output (Daemon)',
'Natural Language :: English',
'Operating System :: POSIX',
'License :: Public Domain',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Desktop Environment',
'Topic :: Utilities',
],
)