File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ 0.3.2 (2018-05-14)
2
+ ------------------
3
+ - Provide a default value of False for imagery_offset to preview function (#79)
4
+
1
5
0.3.1 (2018-04-19)
2
6
------------------
3
7
- Add colors for object detection and segmentation labels (#64)
Original file line number Diff line number Diff line change 1
1
"""Library verison"""
2
- __version__ = '0.3.1 '
2
+ __version__ = '0.3.2 '
Original file line number Diff line number Diff line change 15
15
install_requires = [x .strip () for x in all_reqs if 'git+' not in x ]
16
16
dependency_links = [x .strip ().replace ('git+' , '' ) for x in all_reqs if 'git+' not in x ]
17
17
18
+ # readme
19
+ with open ('README.md' ) as f :
20
+ readme = f .read ()
21
+
18
22
setup (
19
23
name = 'label-maker' ,
20
24
author = 'Drew Bollinger' ,
36
40
include_package_data = True ,
37
41
install_requires = install_requires ,
38
42
dependency_links = dependency_links ,
43
+ long_description = readme ,
44
+ long_description_content_type = "text/markdown"
39
45
)
You can’t perform that action at this time.
0 commit comments