Skip to content

Commit a91506a

Browse files
authored
Merge pull request #84 from developmentseed/v0.3.2
V0.3.2
2 parents f6dfe2d + 5c2c8fe commit a91506a

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.3.2 (2018-05-14)
2+
------------------
3+
- Provide a default value of False for imagery_offset to preview function (#79)
4+
15
0.3.1 (2018-04-19)
26
------------------
37
- Add colors for object detection and segmentation labels (#64)

label_maker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Library verison"""
2-
__version__ = '0.3.1'
2+
__version__ = '0.3.2'

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1616
dependency_links = [x.strip().replace('git+', '') for x in all_reqs if 'git+' not in x]
1717

18+
# readme
19+
with open('README.md') as f:
20+
readme = f.read()
21+
1822
setup(
1923
name='label-maker',
2024
author='Drew Bollinger',
@@ -36,4 +40,6 @@
3640
include_package_data=True,
3741
install_requires=install_requires,
3842
dependency_links=dependency_links,
43+
long_description=readme,
44+
long_description_content_type="text/markdown"
3945
)

0 commit comments

Comments
 (0)