|
13 | 13 |
|
14 | 14 | setup( |
15 | 15 | name='python-geosupport', |
16 | | - version='1.0.0', |
| 16 | + version='1.0.1', |
17 | 17 | 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', |
19 | 19 | 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 | + """, |
30 | 27 | author='Ian Shiland', |
31 | 28 | author_email='ishiland@gmail.com', |
32 | 29 | packages=['geosupport'], |
33 | 30 | include_package_data=True, |
34 | 31 | license='MIT', |
35 | | - keywords = ['NYC', 'geocoder', 'python-geosupport', 'geosupport'], |
| 32 | + keywords=['NYC', 'geocoder', 'python-geosupport', 'geosupport'], |
36 | 33 | 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', |
41 | 36 | 'Programming Language :: Python :: 2.7', |
42 | | - 'Programming Language :: Python :: 3', |
43 | | - 'Programming Language :: Python :: 3.2', |
44 | | - 'Programming Language :: Python :: 3.3', |
45 | 37 | 'Programming Language :: Python :: 3.4', |
46 | 38 | 'Programming Language :: Python :: 3.5', |
47 | 39 | 'Programming Language :: Python :: 3.6', |
| 40 | + 'Programming Language :: Python :: 3.7', |
48 | 41 | ], |
49 | 42 | test_suite="tests", |
50 | 43 | extras_require={ |
|
0 commit comments