Mercurial > hg > simpypi
comparison setup.py @ 8:15c7171941ea
more stubbing for tests
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 28 Feb 2012 13:50:28 -0800 |
parents | 93e830409685 |
children | f8ff95180d04 |
comparison
equal
deleted
inserted
replaced
7:5ee4fe3decd9 | 8:15c7171941ea |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 | 2 |
3 try: | 3 try: |
4 description = file('README.txt').read() | 4 description = file('README.txt').read() |
5 except IOError: | 5 except IOError: |
6 description = '' | 6 description = '' |
7 | 7 |
8 version = "0.0" | 8 version = "0.0" |
9 | 9 |
10 setup(name='simpypi', | 10 setup(name='simpypi', |
19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
20 include_package_data=True, | 20 include_package_data=True, |
21 zip_safe=False, | 21 zip_safe=False, |
22 install_requires=[ | 22 install_requires=[ |
23 # -*- Extra requirements: -*- | 23 # -*- Extra requirements: -*- |
24 'WebOb', | 24 'WebOb', |
25 'Paste', | 25 'Paste', |
26 'PasteScript', | 26 'PasteScript', |
27 'genshi', | 27 'genshi', |
28 'tempita' | 28 'tempita' |
29 ], | 29 ], |
30 entry_points=""" | 30 entry_points=""" |
31 # -*- Entry points: -*- | 31 # -*- Entry points: -*- |
32 [paste.app_factory] | |
33 simpypi = simpypi.factory:factory | |
34 """, | 32 """, |
35 ) | 33 ) |
36 |