-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 863 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 863 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
32
33
34
35
36
import os
import sys
from setuptools import setup, find_packages
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'smart_logger'))
from version import __version__
setup(
name="smart_logger",
version=__version__,
author="Fan-Ming Luo",
author_email="luofm@lamda.nju.edu.cn",
description="logger utility for reinforcement learning",
# 项目主页
url="https://github.com/FanmingL/SmartLogger",
# 你要安装的包,通过 setuptools.find_packages 找到当前目录下有哪些包
packages=find_packages(),
install_requires=[
'tensorboardX',
'numpy',
'paramiko',
'matplotlib',
'seaborn',
'flask',
'flask_cors',
'simplejson',
'Pillow',
'pandas',
'tensorboard',
'psutil',
'tmuxp'
]
)