-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 799 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
28
from setuptools import setup, find_packages
setup(
name='flax-pilot',
version='0.2.3',
author='Nithish M',
author_email='[email protected]',
description='A Simplistic trainer for Flax',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/NITHISHM2410/flax-pilot',
packages=find_packages(include=['fpilot', 'fpilot.*']),
install_requires=[
"jax[cuda12]==0.4.37",
'flax>=0.10.2',
'optax>=0.2.4',
'numpy',
'tqdm',
'mergedeep',
'orbax-checkpoint>=0.5.20',
],
classifiers=[
"Programming Language :: Python :: 3.10",
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.10',
)