-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.coco
51 lines (46 loc) · 1.41 KB
/
setup.coco
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
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
import setuptools
INSTALL_OLD_ITERNASH = os.environ.get("INSTALL_OLD_ITERNASH")
if INSTALL_OLD_ITERNASH:
setuptools.setup(
name="iternash",
version="1.0.0",
description="See https://pypi.org/project/itergame for new PyPI.",
long_description="See https://pypi.org/project/itergame for new PyPI.",
url="https://github.com/evhub/iternash",
author="Evan Hubinger",
author_email="evanjhub@gmail.com",
packages=[],
install_requires=[
"itergame",
],
)
else:
setuptools.setup(
name="itergame",
version="0.1.6",
description="Iterative equilibrium finder for simulating arbitrary games in Python/Coconut.",
long_description="Iterative equilibrium finder for simulating arbitrary games in Python/Coconut.",
url="https://github.com/evhub/iternash",
author="Evan Hubinger",
author_email="evanjhub@gmail.com",
packages=setuptools.find_packages(),
install_requires=[
"bbopt>=1.3.6",
"tqdm",
],
extras_require={
"examples": [
"numpy",
"scipy",
"mpmath",
"scikit-learn",
"matplotlib",
],
"dev": [
"coconut-develop",
"pdoc3",
"Markdown",
],
},
)