2024-04-27 17:24:14 -04:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
# Load the long_description from README.md
|
2024-05-01 18:09:06 +02:00
|
|
|
with open("README.md", "r", encoding="utf8") as fh:
|
2024-04-27 17:24:14 -04:00
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="pykan",
|
2024-04-29 12:57:33 -04:00
|
|
|
version="0.0.2",
|
2024-04-27 17:24:14 -04:00
|
|
|
author="Ziming Liu",
|
|
|
|
author_email="zmliu@mit.edu",
|
|
|
|
description="Kolmogorov Arnold Networks",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2024-05-01 18:09:06 +02:00
|
|
|
# url="https://github.com/kindxiaoming/",
|
2024-04-27 17:24:14 -04:00
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
2024-04-29 02:04:58 -04:00
|
|
|
)
|