-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 1.03 KB
/
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
# https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56
#from distutils.core import setup
from setuptools import setup, find_packages
setup(
name = 'adahessianJax',
version = '1.1',
license = 'apache-2.0',
description = 'Jax implementation of the AdaHessian optimizer.',
author = 'NestorDemeure',
# author_email = 'your.email@domain.com',
url = 'https://github.com/nestordemeure/AdaHessianJax',
# download_url = 'https://github.com/nestordemeure/AdaHessianJax/archive/v?.?.tar.gz',
keywords = ['deep-learning', 'jax', 'optimizer'],
install_requires=['jax', 'flax'],
classifiers=[ # https://pypi.org/classifiers/
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
],
packages=find_packages(),
)