-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (48 loc) · 2.06 KB
/
setup.cfg
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
### setup.cfg
# See http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
# for a detailed explanation of how to structure this file.
[metadata]
# Basic metadata: name, version, author, email address:
name = deeprl_cc
version = 0.0.0
author = Sriram Narayanamoorthy
# One-line project description
description = Multi-Agent RL with Unity ML-Agents Tennis environment.
# Pull the detailed description from the project readme.
long_description = file: README.md
# Home page for the project, e.g., git repo, doc page, etc.
url = https://github.com/nsriram13/rl-collaboration-and-competition
# Additional pages pertaining to the project.
project_urls =
Source = https://github.com/nsriram13/rl-collaboration-and-competition
# For an explanation of classifiers, see https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
Topic :: Scientific/Engineering :: Artificial Intelligence
Programming Language :: Python :: 3
Operating System :: POSIX :: Linux
# See http://setuptools.readthedocs.io/en/latest/setuptools.html#options
# for a full list of available setup.cfg options.
# and see https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords
# for detailed explanations of each option.
[options]
# Project dependencies. Can specify versions as well:
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires =
numpy
scipy
python-dateutil
python_requires = >=3
zip_safe = True
include_package_data = True
packages = find:
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support. Removing this line (or setting universal to 0) will prevent
# bdist_wheel from trying to make a universal wheel. For more see:
# https://packaging.python.org/tutorials/distributing-packages/#wheels
universal=0