21 Star 97 Fork 26

snowland.ltd / snowland-smx-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
A.Star 提交于 2019-07-20 03:10 . 1. 代码优化
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018/9/22 0005 下午 22:29
# @Author : 河北雪域网络科技有限公司 A.Star
# @Site :
# @File : setup.py
# @Software: PyCharm
# !/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
from astartool.setuptool import load_install_requires
import pysmx
setup(
name="snowland-smx",
version=pysmx.__version__,
description=(
'Python implementation gm algorithm'
),
long_description=open('README.en.rst').read(),
author='A.Star',
author_email='astar@snowland.ltd',
maintainer='A.Star',
maintainer_email='astar@snowland.ltd',
license='BSD License',
packages=find_packages(),
platforms=["all"],
url='https://gitee.com/snowlandltd/snowland-smx-python',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
],
install_requires=load_install_requires(),
)
Python
1
https://gitee.com/snowlandltd/snowland-smx-python.git
git@gitee.com:snowlandltd/snowland-smx-python.git
snowlandltd
snowland-smx-python
snowland-smx-python
master

搜索帮助