forked from eugenevinitsky/sequential_social_dilemma_games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 945 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
31
32
33
from setuptools import setup
VERSION = "0.0.1"
long_description = ""
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
license = ""
with open("LICENSE.md", "r", encoding="utf-8") as fh:
license = fh.read()
requirements = []
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.readlines()
setup(
name="social-influence",
version=VERSION,
description="Sequential Social Dilemma Environments",
url="https://github.com/eugenevinitsky/sequential_social_dilemma_games",
long_description=long_description,
long_description_content_type="text/markdown",
license=license,
packages=["social_dilemmas"],
install_requires=requirements,
python_requires=">=3.7, <3.10",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)