Skip to content

Commit fb52fd6

Browse files
committed
Move irc library requirement to setup.py
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
1 parent cc99f74 commit fb52fd6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
irc>=15.0.3
1+
-e .

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
packages=setuptools.find_packages(
3131
exclude=['docs', 'tests', 'tests.*']),
3232
include_package_data=True,
33+
install_requires=[
34+
'irc>=15.0.3',
35+
],
3336
extras_require={
3437
'testing': tests_require,
3538
},

0 commit comments

Comments
 (0)