Skip to content
This repository was archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
read install requirements from a file
Browse files Browse the repository at this point in the history
  • Loading branch information
ShineyDev committed Apr 2, 2021
1 parent 161dd10 commit cef4eef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
discord.py
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
"Topic :: Software Development :: Libraries :: Python Modules",
]

install_requires = [
"discord.py",
]

extras_require = {
"docs": [
"sphinx",
Expand All @@ -34,6 +30,9 @@
],
}

with open("requirements.txt") as stream:
install_requires = stream.read().splitlines()

packages = [
"discord.ext.ipc",
]
Expand Down

0 comments on commit cef4eef

Please sign in to comment.