forked from dhyeythumar/mlagents-video-streamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.36 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
39
40
from setuptools import setup
import mlagents_video_streamer
import os
description = "Live stream Unity's ML-Agents training process from Google Colab to Twitch/YouTube server."
README_path = os.path.join(os.path.abspath(
os.path.dirname(__file__)), 'README.md')
if os.path.exists(README_path):
with open(README_path, encoding='utf-8') as f:
long_description = f.read()
long_description_content_type = 'text/markdown'
else:
print("No Readme.md")
long_description = description
long_description_content_type = 'text/plain'
VERSION = mlagents_video_streamer.__version__
setup(
name="mlagents-video-streamer",
author="Dhyey Thumar",
author_email="[email protected]",
version=VERSION,
packages=["mlagents_video_streamer"],
url="https://github.com/dhyeythumar/mlagents-video-streamer",
description=description,
long_description=long_description,
long_description_content_type=long_description_content_type,
keywords=["ML-Agents", "Video Streamer", "Unity Engine", "Google Colab"],
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"],
)