|
| 1 | +from setuptools import setup, find_packages |
| 2 | +from codecs import open |
| 3 | +from os import path |
| 4 | + |
| 5 | + |
| 6 | +here = path.abspath(path.dirname(__file__)) |
| 7 | + |
| 8 | +with open(path.join(here, 'README.md'), encoding='utf-8') as f: |
| 9 | + long_description = f.read() |
| 10 | + |
| 11 | +setup( |
| 12 | + name='ziptastic-python', |
| 13 | + version='1.0.0b1', |
| 14 | + |
| 15 | + description='Official GetZiptastic.com library.', |
| 16 | + long_description=long_description, |
| 17 | + url='https://github.com/ziptastic/ziptastic-python', |
| 18 | + |
| 19 | + author='Thomas Schultz', |
| 20 | + |
| 21 | + license='MIT', |
| 22 | + |
| 23 | + # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 24 | + classifiers=[ |
| 25 | + 'Development Status :: 4 - Beta', |
| 26 | + 'Intended Audience :: Developers', |
| 27 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 28 | + 'Topic :: Scientific/Engineering :: GIS', |
| 29 | + 'Topic :: Software Development :: Libraries', |
| 30 | + 'License :: OSI Approved :: MIT License', |
| 31 | + 'Programming Language :: Python :: 2.7', |
| 32 | + 'Programming Language :: Python :: 3.3', |
| 33 | + 'Programming Language :: Python :: 3.4', |
| 34 | + 'Programming Language :: Python :: 3.5', |
| 35 | + 'Programming Language :: Python :: 3.6', |
| 36 | + ], |
| 37 | + |
| 38 | + keywords='ziptastic getziptastic geocoding forward reverse geocode GIS', |
| 39 | + packages=find_packages(exclude=['docs', 'tests']), |
| 40 | + install_requires=['requests'], |
| 41 | + extras_require={ |
| 42 | + 'dev': ['check-manifest'], |
| 43 | + 'test': ['coverage', 'requests-mock'], |
| 44 | + }, |
| 45 | +) |
0 commit comments