Skip to content

Commit

Permalink
requirement in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
shadawck committed Jul 29, 2020
1 parent dc79c46 commit f3ec99a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
with open("README.md", "r") as fh:
long_description = fh.read()

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



# This call to setup() does all the work
setup(
name="mitrecve",
Expand All @@ -24,7 +29,7 @@
],
packages=["mitrecve"],
include_package_data=True,
install_requires=["requests", "docopt", "beautifulsoup4"],
install_requires=required,
entry_points={
"console_scripts": [
"mitrecve=mitrecve.__main__:main",
Expand Down

0 comments on commit f3ec99a

Please sign in to comment.