Skip to content

Commit 805b530

Browse files
committed
bump version
1 parent 18050b3 commit 805b530

1 file changed

Lines changed: 13 additions & 20 deletions

File tree

setup.py

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,38 +13,31 @@
1313

1414
setup(
1515
name='python-geosupport',
16-
version='1.0.0',
16+
version='1.0.1',
1717
url='https://github.com/ishiland/python-geosupport',
18-
description='Python bindings for the NYC Geosupport Desktop application',
18+
description='Python bindings for NYC Geosupport Desktop Edition',
1919
long_description="""
20-
Call NYC Planning's Geosupport Desktop functions from Python.
21-
22-
Ex:
23-
>>> import geosupport
24-
>>> g = geosupport.Geocode()
25-
>>> g.address("125 Worth st NY, NY, 10013")
26-
{'Latitude': '40.715428',
27-
'Longitude': '-74.002673',
28-
...}
29-
""",
20+
# Import the library and create a `Geosupport` object.
21+
from geosupport import Geosupport
22+
g = Geosupport()
23+
24+
# Call the address processing function by name
25+
result = g.address(house_number=125, street_name='Worth St', borough_code='Mn')
26+
""",
3027
author='Ian Shiland',
3128
author_email='ishiland@gmail.com',
3229
packages=['geosupport'],
3330
include_package_data=True,
3431
license='MIT',
35-
keywords = ['NYC', 'geocoder', 'python-geosupport', 'geosupport'],
32+
keywords=['NYC', 'geocoder', 'python-geosupport', 'geosupport'],
3633
classifiers=[
37-
'Development Status :: 3 - Alpha',
38-
'Intended Audience :: Developers',
39-
'Topic :: Software Development :: Build Tools',
40-
'License :: OSI Approved :: MIT License',
34+
'Operating System :: Microsoft :: Windows',
35+
'Operating System :: POSIX :: Linux',
4136
'Programming Language :: Python :: 2.7',
42-
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.2',
44-
'Programming Language :: Python :: 3.3',
4537
'Programming Language :: Python :: 3.4',
4638
'Programming Language :: Python :: 3.5',
4739
'Programming Language :: Python :: 3.6',
40+
'Programming Language :: Python :: 3.7',
4841
],
4942
test_suite="tests",
5043
extras_require={

0 commit comments

Comments
 (0)