Skip to content

Commit

Permalink
update setup.py and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
rfeinman committed Sep 27, 2022
1 parent b49ca3e commit 7af6117
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numpy>=1.18.0
scipy>=1.6
torch
torch>=1.9.0
32 changes: 16 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from setuptools import setup

packages = [
'numpy',
'scipy',
'torch'
]

setup(name='torchmin',
version='0.0.2',
description='Minimization for Pytorch',
url='',
author=' Reuben Feinman',
author_email='',
license='MIT Licence',
packages=['torchmin'],
zip_safe=False,
install_requires=packages)
setup(
name='pytorch-minimize',
version='0.0.1',
description='Newton and Quasi-Newton optimization with PyTorch',
url='https://pytorch-minimize.readthedocs.io',
author='Reuben Feinman',
author_email='',
license='MIT Licence',
packages=['torchmin'],
zip_safe=False,
install_requires=[
'numpy>=1.18.0',
'scipy>=1.6',
'torch>=1.9.0'
]
)

0 comments on commit 7af6117

Please sign in to comment.