-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 816 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·31 lines (29 loc) · 816 Bytes
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
from os import path
from setuptools import setup, find_packages
DIR = path.abspath(path.dirname(__file__))
with open(path.join(DIR, "README.md"), encoding="utf-8") as f:
long_desc = f.read()
setup(
name="Light-MALib",
description="A Light-Weighted Distributed Multi-Agent Training Framework",
long_description=long_desc,
long_description_content="text/markdown",
version="0.1.0",
packages=find_packages(exclude="tests"),
include_packages_data=True,
zip_safe=True,
python_requires=">=3.7",
install_requires=[
],
extras_require={
"dev": [
"black==20.8b1",
"pytest",
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-apidoc",
"pytest-profiling",
"coverage",
],
},
)