forked from mmcdermott/EventStreamGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 789 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="EventStreamGPT",
version="0.0.1",
description="EventStreamGPT",
author="Matthew McDermott",
author_email="[email protected]",
url="https://github.com/mmcdermott/EventStreamGPT",
install_requires=[
"pytorch-lightning",
"hydra-core",
"transformers",
"torchmetrics",
"wandb",
"ml-mixins",
"pytorch_lognormal_mixture",
],
packages=find_packages(),
# use this to customize global commands available in the terminal after installing the package
scripts=[
"scripts/pretrain.py",
"scripts/finetune.py",
"scripts/get_embeddings.py",
"scripts/launch_wandb_hp_sweep.py",
],
)