-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
47 lines (43 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
46
47
"""Jaxpruner setup configuration."""
from setuptools import find_packages
from setuptools import setup
__version__ = 0.1
JAX_URL = "https://storage.googleapis.com/jax-releases/jax_releases.html"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="jaxpruner",
version=__version__,
author="Google",
author_email="[email protected]",
description="JaxPruner: A concise library for sparsity research",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/google-research/jaxpruner",
license="Apache 2.0",
packages=find_packages(
exclude=["*test.py", "algorithms/*.py"],
),
zip_safe=False,
install_requires=[
"chex",
"flax",
"jax",
"jaxlib",
"optax",
"numpy",
"ml-collections",
],
dependency_links=[JAX_URL],
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)