mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 15:29:50 +00:00
Give the list of dependencies to distutils.
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
limnoria>2012.08.04 # Needs MultipleReplacer, from 1a64f105
|
||||
psutil>3.1.0 # Fixes #640
|
||||
limnoria > 2012.08.04 # Needs MultipleReplacer, from 1a64f105
|
||||
psutil >= 3.1.0 # Fixes #640
|
||||
|
4
setup.py
4
setup.py
@ -9,6 +9,9 @@ if sys.version_info < (3, 4, 0):
|
||||
sys.stderr.write(os.linesep)
|
||||
sys.exit(-1)
|
||||
|
||||
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as fd:
|
||||
requirements = [x.split('#')[0].strip().replace(' >', ' (>')+')'
|
||||
for x in fd.readlines()]
|
||||
|
||||
setup(
|
||||
name='irctest',
|
||||
@ -45,6 +48,7 @@ setup(
|
||||
'irctest.irc_utils',
|
||||
'irctest.server_tests',
|
||||
],
|
||||
requires=requirements,
|
||||
)
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|
||||
|
Reference in New Issue
Block a user