-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (31 loc) · 1.28 KB
/
setup.py
File metadata and controls
46 lines (31 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='zip-code-radius',
version='0.0.1',
description='Generate minimum sets of zip codes, based on a radius, that can be used in a series of searches to cover the entire USA',
long_description=long_description,
url='https://github.com/simon-wenmouth/zip-code-radius',
author='Simon Wenmouth',
license='http://www.apache.org/licenses/LICENSE-2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords=['zip code', 'radius', 'minimum search set'],
packages=['zip_code_radius'],
install_requires=['requests'],
)