-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (25 loc) · 1011 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
from distutils.core import setup
import sys
if sys.version_info < (2,7):
requires = ['argparse', ]
else:
requires = []
setup(
name = "gnome-background-generator",
version = '1.1.2',
url = 'http://github.com/ametaireau/gnome-background-generator/',
author = 'Alexis Metaireau',
author_email = 'alexis@notmyidea.org',
description = """A simple utility command line to generate a XML file for
dynamic gnome wallpapers""",
long_description=open('README.rst').read(),
requires = requires,
scripts = ['gnome-background-generator', 'gnome-wallpaper-select'],
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Environment :: X11 Applications :: Gnome',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
],
)