Mercurial > hg > GlobalNeighbors
comparison setup.py @ 6:316e1d54ffd4
move to jinja templates
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Sat, 24 Jun 2017 15:47:59 -0700 |
| parents | 5dba84370182 |
| children | 21ed15391e8a |
comparison
equal
deleted
inserted
replaced
| 5:7e27e874655b | 6:316e1d54ffd4 |
|---|---|
| 3 """ | 3 """ |
| 4 | 4 |
| 5 import os | 5 import os |
| 6 | 6 |
| 7 version = "0.0" | 7 version = "0.0" |
| 8 dependencies = ['webob', 'gunicorn'] | 8 dependencies = ['gunicorn', |
| 9 'jinja2', | |
| 10 'webob'] | |
| 11 | |
| 9 | 12 |
| 10 # allow use of setuptools/distribute or distutils | 13 # allow use of setuptools/distribute or distutils |
| 11 kw = {} | 14 kw = {} |
| 12 try: | 15 try: |
| 13 from setuptools import setup | 16 from setuptools import setup |
| 35 description="locate nearest cities", | 38 description="locate nearest cities", |
| 36 long_description=description, | 39 long_description=description, |
| 37 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 40 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
| 38 author='Jeff Hammel', | 41 author='Jeff Hammel', |
| 39 author_email='k0scist@gmail.com', | 42 author_email='k0scist@gmail.com', |
| 40 url='', | 43 url='http://k0s.org/hg/GlobalNeighbors', |
| 41 license='', | 44 license='', |
| 42 packages=['globalneighbors'], | 45 packages=['globalneighbors'], |
| 43 include_package_data=True, | 46 include_package_data=True, |
| 44 tests_require=['tox'], | 47 tests_require=['tox', 'pytest'], |
| 45 zip_safe=False, | 48 zip_safe=False, |
| 46 **kw | 49 **kw |
| 47 ) | 50 ) |
