-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathsetup.py
30 lines (27 loc) · 976 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
# Read in the requirements.txt file
with open('requirements.txt') as f:
requirements = f.read().splitlines()
# Read in the version number
exec(open('axelrod/version.py', 'r').read())
setup(
name='Axelrod',
version=__version__,
install_requires=requirements,
author='Vince Knight, Owen Campbell, Karol Langner, Marc Harper',
author_email=('axelrod-python@googlegroups.com'),
packages=['axelrod', 'axelrod.strategies', 'axelrod.tests', 'axelrod.data'],
url='http://axelrod.readthedocs.org/',
license='The MIT License (MIT)',
description='Reproduce the Axelrod iterated prisoners dilemma tournament',
include_package_data=True,
package_data={
'': ['axelrod/data/*.csv'],
},
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
python_requires='>=3.0',
)