1 Star 0 Fork 21

月弯 / borax

forked from kinegratii / borax 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
kinegratii 提交于 2019-01-30 12:34 . :sparkles:add festivals module
# coding=utf8
import pathlib
import re
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent
txt = (here / 'borax' / '__init__.py').read_text()
version = re.findall(r"^__version__ = '([^']+)'\r?$", txt, re.M)[0]
lib_classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
'Operating System :: OS Independent'
]
setup(
name='borax',
version=version,
python_requires='>=3.5',
packages=find_packages(exclude=['tests']),
include_package_data=True,
url='https://github.com/kinegratii/borax',
license='MIT',
author='kinegratii',
author_email='kinegratii@gmail.com',
classifiers=lib_classifiers,
description='A util collections for Python3.',
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yuewan/borax.git
git@gitee.com:yuewan/borax.git
yuewan
borax
borax
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891