加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 919 Bytes
一键复制 编辑 原始数据 按行查看 历史
TAJh 提交于 2024-11-26 08:49 . version 1.0
from setuptools import setup, find_packages
import os
setup(
name='visualizer',
version='1.0.0',
packages=find_packages(),
install_requires=[
],
entry_points={
'console_scripts': [
'visualizer=visualizer.main:main', # Allows running `graph_analyzer`
],
},
author='TAJh',
author_email='your.email@example.com',
description='A command-line tool for parsing graphs and processing IR files.',
long_description=open('README.md', encoding='utf-8').read() if os.path.exists('README.md') else '',
long_description_content_type='text/markdown',
url='https://gitee.com/tajh/visualizer.git', # Replace with the correct URL
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化