-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 959 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
from setuptools import find_packages, setup
with open("./README.md", "r") as f:
long_description = f.read()
setup(
name="mlprank",
version="0.0.1",
description=(
"A neural network pruning package based on based on the"
" PageRank centrality measure"
),
package_dir={"": "mlprank"},
packages=find_packages(where="mlprank"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.aws.dev/adavidho/mlp-rank-pruning",
author="David Hoffmann",
author_email="adavidho@amazon.com",
license="Apache-2.0",
classifiers=[
"License :: OSI Approved :: Apache-2.0",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
install_requires=[
"numpy ~= 1.26.4",
"torch ~= 2.2.1",
"torchvision ~= 0.17.1",
"wandb ~= 0.16.4",
],
python_requires=">=3.10",
)