Mercurial > hg > wsgintegrate
comparison setup.py @ 19:4d9a2a2fb8c0
print out the localhost url and other minor fixes
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Sat, 09 Mar 2013 23:03:48 -0800 |
| parents | 7c2a3016da4e |
| children | caf763fc1c7d |
comparison
equal
deleted
inserted
replaced
| 18:d30118837c1a | 19:4d9a2a2fb8c0 |
|---|---|
| 3 | 3 |
| 4 version = '0.1.1' | 4 version = '0.1.1' |
| 5 | 5 |
| 6 # description | 6 # description |
| 7 try: | 7 try: |
| 8 filename = os.path.join(os.path.dirname(__file__), 'README.txt') | 8 filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.txt') |
| 9 description = file(filename).read() | 9 description = file(filename).read() |
| 10 except: | 10 except: |
| 11 description = '' | 11 description = '' |
| 12 | 12 |
| 13 # dependencies | 13 # dependencies |
| 25 keywords='', | 25 keywords='', |
| 26 author='Jeff Hammel', | 26 author='Jeff Hammel', |
| 27 author_email='jhammel@mozilla.com', | 27 author_email='jhammel@mozilla.com', |
| 28 url='http://k0s.org/', | 28 url='http://k0s.org/', |
| 29 license='GPL', | 29 license='GPL', |
| 30 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 30 packages=['wsgintegrate'], |
| 31 include_package_data=True, | 31 include_package_data=True, |
| 32 zip_safe=False, | 32 zip_safe=False, |
| 33 install_requires=dependencies, | 33 install_requires=dependencies, |
| 34 entry_points=""" | 34 entry_points=""" |
| 35 [console_scripts] | 35 [console_scripts] |
