annotate setup.py @ 28:2df31d088583

weird version bump i dont understand why i have to do
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 30 Oct 2011 14:47:09 -0700
parents e5336ec2ee02
children b61fe6b0ebe1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
1 import os
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
2 from setuptools import setup, find_packages
24
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
3
28
2df31d088583 weird version bump i dont understand why i have to do
Jeff Hammel <jhammel@mozilla.com>
parents: 27
diff changeset
4 version = '0.3.3'
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
5
24
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
6 try:
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
7 description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read()
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
8 except:
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
9 description = ''
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
10
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
11 setup(name='montage',
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
12 version=version,
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
13 description="photogallery using decoupage",
24
4d1911743e82 start doing documentation
k0s <k0scist@gmail.com>
parents: 16
diff changeset
14 long_description=description,
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
16 keywords='photo gallery decoupage',
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
17 author='Jeff Hammel',
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
18 author_email='k0scist@gmail.com',
7
70ead14c7d43 correct url
k0s <k0scist@gmail.com>
parents: 6
diff changeset
19 url='http://k0s.org/hg/montage',
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
20 license='GPL',
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
22 include_package_data=True,
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
23 zip_safe=False,
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
24 install_requires=[
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
25 # -*- Extra requirements: -*-
26
ee74cf1e444b * update templates to use head.html
Jeff Hammel <jhammel@mozilla.com>
parents: 25
diff changeset
26 'decoupage >= 0.8',
8
93af41dcff3a now creates thumbnails using cropresize package
k0s <k0scist@gmail.com>
parents: 7
diff changeset
27 'cropresize'
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
28 ],
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
29 entry_points="""
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
30 # -*- Entry points: -*-
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
31 [decoupage.formatters]
2
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents: 0
diff changeset
32 images = montage.formatters:Images
0
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
33 """,
b7348ffe5b46 initial import of montage
k0s <k0scist@gmail.com>
parents:
diff changeset
34 )