Skip to content

Commit

Permalink
Added setup.py, bumped version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hr0nix committed Aug 23, 2022
1 parent df10bea commit 05c65c4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions optax_adan/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
__version__ = '0.1.1'
__author__ = 'Boris Yangel'

from .transform import adan

20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import setup

setup(
name='optax-adan',
version='0.1.1',
description='An implementation of adan optimization algorithm for optax.',
url='https://github.com/hr0nix/optax-adan',
author='Boris Yangel',
author_email='[email protected]',
license='Apache License 2.0',
packages=['optax_adan'],
install_requires=['optax'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
)

0 comments on commit 05c65c4

Please sign in to comment.