-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (22 loc) · 901 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
import pathlib
from setuptools import find_packages, setup
# The text of the README file
README_CONTENT = (pathlib.Path(__file__).parent / "README.md").read_text()
setup(
name='torch-vectorized',
version='0.1.18',
description='A quick closed-form solution for volumetric 3x3 matrices Eigen-Decomposition with Pytorch.',
long_description=README_CONTENT,
long_description_content_type='text/markdown',
author='Benoit Anctil-Robitaille',
author_email='benoit.anctil-robitaille.1@ens.etsmtl.ca',
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7"],
packages=find_packages(exclude=("tests",)),
install_requires=['numpy>=1.16.1',
'torch>=1.1',
'torchvision>=0.2.1']
)