Mercurial > hg > decoupage
comparison setup.py @ 88:c382bdd01751
directory indicator
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 12 Jan 2014 19:20:16 -0800 |
parents | 3262010f7f79 |
children | bdb9e39abd84 |
comparison
equal
deleted
inserted
replaced
87:ced29a73c561 | 88:c382bdd01751 |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup |
2 | 2 |
3 # use README as long_description | 3 # use README as long_description |
4 try: | 4 try: |
5 description = file("README.txt").read() | 5 description = file("README.txt").read() |
6 except IOError: | 6 except IOError: |
7 description = '' | 7 description = '' |
8 | 8 |
9 version = '0.13.0' | 9 version = '0.13.1' |
10 | 10 |
11 setup(name='decoupage', | 11 setup(name='decoupage', |
12 version=version, | 12 version=version, |
13 description="Decoupage is the art of decorating an object by gluing colored paper cutouts onto it in combination with special paint effects ... The software decoupage lets you stitch together index pages from filesystem content", | 13 description="Decoupage is the art of decorating an object by gluing colored paper cutouts onto it in combination with special paint effects ... The software decoupage lets you stitch together index pages from filesystem content", |
14 long_description=description, | 14 long_description=description, |
15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
16 author='Jeff Hammel', | 16 author='Jeff Hammel', |
17 author_email='k0scist@gmail.com', | 17 author_email='k0scist@gmail.com', |
18 url='http://k0s.org/hg/decoupage', | 18 url='http://k0s.org/hg/decoupage', |
19 license="GPL", | 19 license="GPL", |
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 20 packages=['decoupage'], |
21 include_package_data=True, | 21 include_package_data=True, |
22 zip_safe=False, | 22 zip_safe=False, |
23 install_requires=[ | 23 install_requires=[ |
24 # -*- Extra requirements: -*- | 24 # -*- Extra requirements: -*- |
25 'WebOb', | 25 'WebOb', |
47 | 47 |
48 [decoupage.formatters] | 48 [decoupage.formatters] |
49 all = decoupage.formatters:All | 49 all = decoupage.formatters:All |
50 css = decoupage.formatters:CSS | 50 css = decoupage.formatters:CSS |
51 datestamp = decoupage.formatters:Datestamp | 51 datestamp = decoupage.formatters:Datestamp |
52 directory = decoupage.formatters:DirectoryIndicator | |
52 describe = decoupage.formatters:FilenameDescription | 53 describe = decoupage.formatters:FilenameDescription |
53 icon = decoupage.formatters:Favicon | 54 icon = decoupage.formatters:Favicon |
54 ignore = decoupage.formatters:Ignore | 55 ignore = decoupage.formatters:Ignore |
55 include = decoupage.formatters:Include | 56 include = decoupage.formatters:Include |
56 links = decoupage.formatters:Links | 57 links = decoupage.formatters:Links |