Skip to content

Commit e077af9

Browse files
committed
2 parents d17eb79 + 4f36494 commit e077af9

2 files changed

Lines changed: 8 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python-geosupport [![Python 2.7](https://img.shields.io/badge/python-2.7-blue.svg)](https://www.python.org/downloads/release/python-2714/) [![Python 3+](https://img.shields.io/badge/python-3+-blue.svg)](https://www.python.org/downloads/release/python-360/) [![PyPI version](https://img.shields.io/pypi/v/python-geosupport.svg)](https://pypi.python.org/pypi/python-geosupport/)
1+
# python-geosupport [![Python 2.7](https://img.shields.io/badge/python-2.7-blue.svg)](https://www.python.org/downloads/release/python-2714/) [![Python 3.4+](https://img.shields.io/badge/python-3.4+-blue.svg)](https://www.python.org/downloads/release/python-360/) [![PyPI version](https://img.shields.io/pypi/v/python-geosupport.svg)](https://pypi.python.org/pypi/python-geosupport/)
22

33
Python bindings for NYC Planning's [Geosupport Desktop Edition](https://www1.nyc.gov/site/planning/data-maps/open-data/dwn-gde-home.page).
44

setup.py

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,17 @@
1111

1212
here = path.abspath(path.dirname(__file__))
1313

14+
with open("README.md", "r") as fh:
15+
long_description = fh.read()
16+
1417
setup(
1518
name='python-geosupport',
16-
version='1.0.1',
19+
version='1.0.2',
1720
url='https://github.com/ishiland/python-geosupport',
1821
description='Python bindings for NYC Geosupport Desktop Edition',
19-
long_description="""
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-
""",
27-
author='Ian Shiland',
22+
long_description=long_description,
23+
long_description_content_type='text/markdown',
24+
author='Ian Shiland, Jeremy Neiman',
2825
author_email='ishiland@gmail.com',
2926
packages=['geosupport'],
3027
include_package_data=True,

0 commit comments

Comments
 (0)