Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
Modify how dependecies are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurcerveira committed May 18, 2020
1 parent 3648ab6 commit fd097bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
long_description = fh.read()


def load_requirements(fname):
reqs = parse_requirements(fname, session="test")
return [str(ir.req) for ir in reqs]
requires = ['requests==2.23.0']


setuptools.setup(
Expand All @@ -27,6 +25,6 @@ def load_requirements(fname):
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=load_requirements("requirements.txt"),
install_requires=requires,
python_requires='>=3.2',
)

0 comments on commit fd097bf

Please sign in to comment.