-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
31 lines (30 loc) · 1003 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
from setuptools import find_packages, setup
setup(
packages=find_packages(),
include_package_data=True,
package_data={
"acegen": [
"priors/**",
"scripts/**/config_denovo.yaml",
"scripts/**/config_fragment.yaml",
"scripts/**/config_scaffold.#! /usr/bin/python3yaml",
]
},
scripts=[
"scripts/a2c/a2c.py",
"scripts/ahc/ahc.py",
"scripts/ppo/ppo.py",
"scripts/reinvent/reinvent.py",
"scripts/pretrain/pretrain_single_node.py",
"scripts/pretrain/pretrain_distributed.py",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=["torch", "tensordict", "torchrl", "tqdm", "wandb", "hydra-core"],
)