Skip to content

Commit

Permalink
add tests_require & extras_require
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenetler committed Oct 21, 2022
1 parent c058f26 commit 2725632
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
with open(path.join(this_directory, "description.md"), encoding="utf-8") as f:
long_description = f.read()

test_deps = ["python-dotenv==0.20.0", "pytest==7.1.3"]
extras = {'test': test_deps}

setup(
name="heyoo",
version="0.0.6",
Expand All @@ -19,7 +22,11 @@
author_email="isaackeinstein@gmail.com",
license="MIT",
packages=["heyoo"],
install_requires=["requests"],
install_requires=["requests==2.28.1",
"Flask==2.2.2",
"requests-toolbelt==0.9.1"],
tests_require=test_deps,
extras_require=extras,
keywords=[
"heyoo",
"heyoo-libary",
Expand Down

0 comments on commit 2725632

Please sign in to comment.