forked from Axelrod-Python/Axelrod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.27 KB
/
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
31
32
33
34
35
36
37
38
from setuptools import setup
# Read in the requirements.txt file
with open("requirements.txt") as f:
requirements = []
for library in f.read().splitlines():
if "hypothesis" not in library: # Skip: used only for dev
requirements.append(library)
# Read in long description
with open("README.rst", "r") as f:
long_description = f.read()
# 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.data"],
url="http://axelrod.readthedocs.org/",
license="The MIT License (MIT)",
description="Reproduce the Axelrod iterated prisoners dilemma tournament",
long_description=long_description,
long_description_content_type="text/x-rst",
include_package_data=True,
package_data={"": ["axelrod/data/*"]},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.6",
)