Skip to content

Commit

Permalink
Move irc library requirement to setup.py
Browse files Browse the repository at this point in the history
I'm so out of practice at building libraries that I neglected to mark
irc as a dependency in the setup.py file.

Closes #1
  • Loading branch information
bd808 committed Feb 22, 2017
1 parent cc99f74 commit fb52fd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
irc>=15.0.3
-e .
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
packages=setuptools.find_packages(
exclude=['docs', 'tests', 'tests.*']),
include_package_data=True,
install_requires=[
'irc>=15.0.3',
],
extras_require={
'testing': tests_require,
},
Expand Down

0 comments on commit fb52fd6

Please sign in to comment.