Skip to content

Commit 78bbf61

Browse files
author
dafnevk
committed
Finally fixed the pypi setup.py, this should now be release 1.0.3
1 parent d9b24ac commit 78bbf61

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This 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

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include requirements.txt
2+
include README.md

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from setuptools import setup, find_packages
66
from pip.req import parse_requirements
77

8-
98
with open('README.md') as f:
109
readme = f.read()
1110

@@ -15,12 +14,12 @@
1514

1615
setup(
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
)

0 commit comments

Comments
 (0)