Skip to content

Commit

Permalink
Update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-royer committed Jul 21, 2023
1 parent 1361d3a commit 369e6aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
logging>=0.4
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from setuptools import setup

if __name__ == "__main__":
setup()
with open("requirements.txt", "r", encoding="utf-8") as file:
requirements = [line.strip("\n") for line in file.readlines()]
setup(install_requires=requirements)
2 changes: 1 addition & 1 deletion src/irc_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.4"
__version__ = "1.0.5"

0 comments on commit 369e6aa

Please sign in to comment.