-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
36 lines (35 loc) · 1.23 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
from setuptools import find_packages, setup
setup(
name="nanodl",
version="0.0.0",
author="Henry Ndubuaku",
author_email="[email protected]",
description="A Jax-based library for designing and training transformer models from scratch.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/hmunachi/nanodl",
packages=find_packages(),
install_requires=[
"flax",
"jax",
"jaxlib",
"optax",
"einops",
"sentencepiece",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="transformers jax machine learning deep learning pytorch tensorflow",
python_requires=">=3.7",
)