forked from fossasia/visdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 965 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
34
35
36
37
38
39
40
41
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'py/visdom/VERSION')) as version_file:
version = version_file.read().strip()
readme = open('README.md').read()
requirements = [
'numpy>=1.8',
'scipy',
'pillow',
'requests',
'tornado',
'pyzmq',
'six',
'torchfile',
'websocket-client',
]
setup(
# Metadata
name='visdom',
version=version,
author='Allan Jabri, Jack Urbanek, Laurens van der Maaten',
author_email='[email protected]',
url='https://github.com/facebookresearch/visdom',
description='A tool for visualizing live, rich data for Torch and Numpy',
long_description=readme,
license='CC-BY-NC-4.0',
# Package info
packages=['visdom'],
package_dir={'': 'py'},
package_data={'visdom': ['static/*.*', 'static/**/*']},
include_package_data=True,
zip_safe=False,
install_requires=requirements,
)