-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (50 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
try:
with open('README.rst') as f:
readme = f.read()
except IOError:
readme = ''
name = 'chainerboard'
exec(open('chainerboard/_version.py').read())
release = __version__
version = '.'.join(release.split('.')[:2])
setup(
name=name,
author='Yuta Koreeda',
author_email='secret-email@example.com',
maintainer='Yuta Koreeda',
maintainer_email='secret-email@example.com',
version=release,
description='Visualization toolkit for Chainer',
long_description=readme,
url='https://github.com/koreyou/chainerboard',
packages=[
'chainerboard',
'chainerboard.app'
],
include_package_data=True,
license='MIT',
install_requires=[
'Click',
'flask',
'watchdog',
'numpy>=1.10',
'six'
],
entry_points = {
'console_scripts': ['chainerboard=chainerboard.cli:cli'],
},
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis"
]
)