Mercurial > hg > wsgintegrate
comparison setup.py @ 26:9374bb82258e
add pyloader dependency
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 12 Apr 2017 11:42:15 -0700 |
parents | b43cb919b1e4 |
children | b3a950065844 |
comparison
equal
deleted
inserted
replaced
25:3c9e8c9816df | 26:9374bb82258e |
---|---|
1 from setuptools import setup | 1 from setuptools import setup |
2 import os | 2 import os |
3 | 3 |
4 version = '0.1.3' | 4 version = '0.1.4' |
5 | 5 |
6 # description | 6 # description |
7 try: | 7 try: |
8 filename = os.path.join(os.path.dirname(os.path.abspath(__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 = ['webob'] | 13 dependencies = ['webob', 'pyloader'] |
14 | 14 |
15 setup(name='wsgintegrate', | 15 setup(name='wsgintegrate', |
16 version=version, | 16 version=version, |
17 description='WSGI integration layer', | 17 description='WSGI integration layer', |
18 long_description=description, | 18 long_description=description, |
19 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 19 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
20 keywords='', | 20 keywords='', |
21 author='Jeff Hammel', | 21 author='Jeff Hammel', |
22 author_email='k0scist@gmail.com', | 22 author_email='k0scist@gmail.com', |
23 url='http://k0s.org/', | 23 url='http://k0s.org/hg/wsgintegrate', |
24 license='GPL', | 24 license='GPL', |
25 packages=['wsgintegrate'], | 25 packages=['wsgintegrate'], |
26 include_package_data=True, | 26 include_package_data=True, |
27 zip_safe=False, | 27 zip_safe=False, |
28 install_requires=dependencies, | 28 install_requires=dependencies, |