Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  remove unnecessary dependencies
  • Loading branch information
abertschi committed Nov 22, 2017
2 parents c83db15 + 7cb383a commit cdd3fd4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion postcard_creator/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = '0.0.4'
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ def find_version(*file_paths):
'idna',
'requests',
'urllib3',
'python_resize_image>=1.1.11'
'python_resize_image'
]

setup(
name='postcard_creator',
version=find_version('postcard_creator', '__init__.py'),
version='0.0.6', #find_version('postcard_creator', '__init__.py'),
url='http://github.com/abertschi/postcard_creator_wrapper',
license='Apache Software License',
author='Andrin Bertschi',
Expand All @@ -53,8 +53,8 @@ def find_version(*file_paths):
'Programming Language :: Python :: 3.6',
],
setup_requires=['pytest-runner'],
package_data={'postcard_creator': ['page_1.svg', 'page_2.svg']},
extras_require={
':python_version=="3.2"': ['virtualenv<14', 'pytest<3'],
}
package_data={'postcard_creator': ['page_1.svg', 'page_2.svg']}
# extras_require={
# ':python_version=="3.2"': ['virtualenv<14', 'pytest<3'],
# }
)

0 comments on commit cdd3fd4

Please sign in to comment.