-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
40 lines (36 loc) · 1.79 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 find_packages
from setuptools import setup
F = 'README.md'
with open(F, 'r') as readme:
LONG_DESCRIPTION = readme.read()
setup(name='design-bench', version='2.0.20', license='MIT',
packages=find_packages(include=['design_bench', 'design_bench.*']),
description='Design-Bench: Benchmarks for '
'Data-Driven Offline Model-Based Optimization',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Brandon Trabucco',
author_email='[email protected]',
url='https://github.com/brandontrabucco/design-bench',
download_url='https://github.com/'
'brandontrabucco/design-bench/archive/v2_0_20.tar.gz',
keywords=['Deep Learning', 'Neural Networks',
'Benchmark', 'Model-Based Optimization'],
extras_require={'all': ['gym[mujoco]<0.26.0'], 'cma': ['cma']},
install_requires=['pandas', 'requests', 'scikit-learn',
'torch', 'torchvision', 'numpy',
'tensorflow>=2.2', 'transformers',
'tokenizers', 'deepchem'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'])