df826c94创建于 2025年12月30日历史提交
import os
from setuptools import setup
os.makedirs("output", exist_ok=True)
setup(
    name = 'mskl',
    version = '1.0.0',
    author =' mskl',
    author_email = 'mskl',
    description = 'mskl',
    long_description = open('README.md', encoding='utf-8').read(),
    long_description_content_type = 'text/markdown',
    url = 'https://gitee.com/Ascend/MindStudio-KL',
    packages = ['mskl'],
    include_package_data = True,
    classifiers = [
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
    ],
    options={
        'bdist_wheel': {
            'dist_dir': 'output',
        }
    },
    python_requires = '>=3.6'
)