-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (26 loc) · 962 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
from setuptools import setup, find_packages
setup(
name="torchfactor",
packages=find_packages(),
version="1.0.0",
license="MIT",
description="A package for tensor factorizations using neural networks in PyTorch",
author="Jonah Casebeer, Aaron Green, Alex Mackowiack",
url="https://github.com/Aaron09/torchfactor",
download_url="https://github.com/Aaron09/torchfactor/archive/v1.0.0.tar.gz",
keywords=["PyTorch", "tensor", "factorization", "neural network", "deep learning"],
install_requires=[
"torch",
"torchvision",
"numpy",
"matplotlib",
"scikit-image"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.6"
],
)