-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
74 lines (67 loc) · 2.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from setuptools import find_packages
from setuptools import setup
# Update this every release to be 'v{next release number}-dev'
DEFAULT_VERSION = '0.0.1-dev'
# Required dependencies
required = [
# Please keep alphabetized
'flask',
'matplotlib',
'numpy',
'plotly @ https://api.github.com/repos/plotly/plotly.py/tarball/2594076e29584ede2d09f2aa40a8a195b3f3fc66', # noqa: E501
]
# Dependencies for optional features
extras = {}
extras['all'] = list(set(sum(extras.values(), [])))
# Development dependencies (*not* included in "all")
extras['dev'] = [
# Please keep alphabetized
'coverage',
'flake8',
'flake8-docstrings',
'flake8-import-order',
'pep8-naming',
'pre-commit',
'pydocstyle<4.0.0',
'pylint',
'pytest>=3.6', # Required for pytest-cov on Python 3.6
'pytest-cov',
'recommonmark',
'sphinx',
'yapf',
]
with open('README.md') as f:
readme = f.read()
# Get the package version dynamically
with open('VERSION') as v:
version = v.read().strip()
setup(
name='viskit',
version=version,
author='Reinforcement Learning Working Group',
author_email='[email protected]',
description=(
'Hyperparameter dashboard for reinforcement learning experiments'),
url='https://github.com/rlworkgroup/viskit',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=required,
extras_require=extras,
license='MIT',
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
],
)