forked from lodimasq/batch-checkpoint-merger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 977 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
29
30
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
setuptools.setup(
name="batch_checkpoint_merger",
version="1.0.0",
author="lodimas",
author_email="[email protected]",
description="Batch checkpoint merger, with a UI",
long_description="Python based application to automate the creation of model checkpoint merges. Supports various interpolation models in an attempt to smooth the transition between merge steps.",
long_description_content_type="text/markdown",
url="https://github.com/",
packages=['batch_checkpoint_merger'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'PySimpleGUI',
'matplotlib',
'pathlib',
'torch',
'pyperclip'
]
)