Skip to content

Commit

Permalink
requirements changed
Browse files Browse the repository at this point in the history
  • Loading branch information
soeren-kirchner committed Nov 10, 2019
1 parent c88c239 commit 0fc51ee
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
with open("README.md", "r") as readme:
long_description = readme.read()

with open('requirements.txt') as req_file:
requirements = req_file.read().splitlines()
# with open('requirements.txt') as req_file:
# requirements = req_file.read().splitlines()

setuptools.setup(
name="pyimgbatch",
Expand All @@ -15,7 +15,10 @@
long_description_content_type="text/markdown",
url="https://github.com/soeren-kirchner/pyimgbatch",
# packages=['pyimgbatch'],
install_requires=requirements,
install_requires=[
"Pillow>=6.2.1",
"tqdm>=4.36.1"
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
Expand All @@ -34,7 +37,7 @@
"Topic :: Utilities"
],
python_requires='>=3.6',
version="0.2.2",
version="0.2.6post2",
# version_config={
# "version_format": "{tag}.dev{sha}",
# "starting_version": "0.1.0"
Expand Down

0 comments on commit 0fc51ee

Please sign in to comment.