3 Star 38 Fork 4

Laomo./AIL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.ail 519 Bytes
一键复制 编辑 原始数据 按行查看 历史
import 'maptools' (mapwith)
from os.path import exists
from setuptools import setup, find_packages
from ail.core.version import AIL_MAIN_VERSION, AIL_SUB_VERSION
setup(
name='ail',
packages=find_packages(),
version='{}.{}'.format(AIL_MAIN_VERSION,
'.'.join(mapwith((x) -> str(x), AIL_SUB_VERSION))),
entry_points={
'console_scripts': [
'ail = ail.__main__:main',
]
},
package_data={
'ail': ['lib/*.ail', 'core/INSTALL_TIME']
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LaomoBK/ail.git
[email protected]:LaomoBK/ail.git
LaomoBK
ail
AIL
3.0

搜索帮助