Skip to content

Commit 01639b5

Browse files
committed
Adding a simple read of the requirements.txt.
1 parent 2b6a094 commit 01639b5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
from setuptools import setup
22

3+
# Read in the requirements.txt file
4+
with open('requirements.txt') as f:
5+
requirements = f.read().splitlines()
36

47
setup(
58
name='Axelrod',
69
version='0.0.31',
10+
install_requires=requirements,
711
author='Vince Knight, Owen Campbell, Karol Langner, Marc Harper',
812
author_email=('axelrod-python@googlegroups.com'),
913
packages=['axelrod', 'axelrod.strategies', 'axelrod.tests'],

0 commit comments

Comments
 (0)