forked from rfeinman/pytorch-minimize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 720 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
from setuptools import setup, find_packages
# find packages
packages = find_packages(exclude=("tests", "tests.*"))
# setup
setup(
name='pytorch-minimize',
description='Newton and Quasi-Newton optimization with PyTorch',
url='https://pytorch-minimize.readthedocs.io',
author='Reuben Feinman',
author_email='[email protected]',
license='MIT Licence',
packages=packages,
zip_safe=False,
install_requires=[
'numpy>=1.18.0',
'scipy>=1.6',
'torch>=1.9.0'
],
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)