File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file.
33This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44
5+ ## 1.0.2 - 2016-09-28
6+ ## Changed
7+ - Fix setup.py for PyPi installation
8+
59## 1.0.1 - 2016-09-28
610## Changed
711- Changed setup.py so that installation is completely possible through pip
Original file line number Diff line number Diff line change 1+ include requirements.txt
2+ include README.md
Original file line number Diff line number Diff line change 55from setuptools import setup , find_packages
66from pip .req import parse_requirements
77
8-
98with open ('README.md' ) as f :
109 readme = f .read ()
1110
1514
1615setup (
1716 name = 'salientregions' ,
18- version = '1.0.1 ' ,
17+ version = '1.0.3 ' ,
1918 install_requires = requirements ,
2019 description = 'Package for finding salient regions in images' ,
2120 #long_description=readme,
2221 author = 'Netherlands eScience Center' ,
2322 url = 'https://github.com/NLeSC/SalientRegions-python' ,
24- download_url = 'https://github.com/NLeSC/SalientDetector-python/tarball/v1.0.1 ' ,
23+ download_url = 'https://github.com/NLeSC/SalientDetector-python/tarball/v1.0.3 ' ,
2524 packages = find_packages (exclude = ('tests' ))
2625)
You can’t perform that action at this time.
0 commit comments