forked from redwoodresearch/mlab
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 842 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
32
33
34
#!/usr/bin/env python
from setuptools import setup
# from distutils.core import setup
setup(
name="ml_bootcamp",
version="0.1",
description="Machine Learning for Alignment Bootcamp",
author="Redwood Research",
author_email="[email protected]",
# install_requires=[
# "torch",
# "torchtyping",
# "einops",
# "torchvision",
# "torchtext",
# "numpy",
# "transformers",
# "sentencepiece",
# "unidecode",
# "jupyter_kernel_gateway",
# "ipykernel",
# "pytest",
# "matplotlib",
# "plotly",
# "sklearn",
# "black",
# "comet_ml",
# "git+https://github.com/google/gin-config.git@e518c4ec7755a3e5da973e894ab23cc80c6665ed#egg=gin-config",
# ],
packages=["days", "mlab_tests"],
)