Ai
1 Star 1 Fork 1

A.Star算法组/astartool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
A.Star 提交于 2024-11-29 16:14 +08:00 . feat&tag:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Author : 河北雪域网络科技有限公司 A.Star
# @contact: astar@snowland.ltd
# @site: www.snowland.ltd
# @file: setup.py
# @time: 2018/9/8 1:31
# @Software: PyCharm
import os
from setuptools import find_packages
from astartool import version
from astartool.setuptool import load_install_requires, get_version, setup, read_file
osp = os.path
setup(
name='astartool',
version=get_version(version),
description=(
'toolkit for python'
),
long_description=read_file('description.rst', encoding='utf-8'),
author='A.Star',
author_email='astar@snowland.ltd',
maintainer='A.Star',
maintainer_email='astar@snowland.ltd',
license='Apache v2.0',
packages=find_packages(),
platforms=["all"],
url='https://gitee.com/hoops/astartool',
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries'
],
install_requires=load_install_requires()
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hoops/astartool.git
git@gitee.com:hoops/astartool.git
hoops
astartool
astartool
master

搜索帮助