-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 948 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
35
36
37
import setuptools
setuptools.setup(
name="char-diffusion",
version="0.0.1",
description="",
long_description="",
long_description_content_type="text/markdown",
author="Jon Tow",
author_email="jonathantow1@gmail.com",
url="http://github.com/jon-tow/char-diffusion",
license="Apache 2.0",
packages=setuptools.find_packages(),
scripts=[],
install_requires=[
"jax",
"jaxtyping",
"einops>=0.4",
"equinox",
"numpy",
"optax",
"wandb",
"ml_collections",
],
extras_require={
"test": ["pytest"],
},
classifiers=[
"Development Status :: Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="nlp machinelearning",
)