-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 845 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
from setuptools import find_packages, setup
packages = find_packages(exclude=("setup", "tests"))
version = "0.0.3"
setup(
name="mup_tf",
version=version,
description="Maximal Update Parametrization in Tensorflow",
author="Zach Nussbaum",
author_email="zanussbaum@gmail.com",
url="https://github.com/zanussbaum/mup-tf",
packages=packages,
include_package_data=True, # for manifest files.
python_requires=">=3.7, <4",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"tensorflow<2.10.0",
"tqdm",
"pyyaml",
"matplotlib",
"seaborn",
],
license="PROPRIETARY",
test_suite="tests",
tests_require=["pytest-runner"],
)