Skip to content

Commit

Permalink
Read requirements in setup.py #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Dafne van Kuppevelt committed Jan 11, 2021
1 parent 7d84f01 commit 6701dd4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

setuptools.setup(
name="stroll-jiskattema",
version="0.0.1",
Expand All @@ -13,6 +16,7 @@
long_description_content_type="text/markdown",
url="https://github.com/Filter-Bubble/stroll",
packages=setuptools.find_packages(),
install_requires=required,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 6701dd4

Please sign in to comment.