1 Star 0 Fork 0

dreammo/pyphp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
dreammo 提交于 2018-10-21 22:08 . publish version 1.0
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='phppy',
version='1.0',
description=(
'let you can use like php language to use python,include some function and PDO (base on pymysql)'
),
long_description=open('README.rst').read(),
author='dreammo',
author_email='1171031749@qq.com',
maintainer='dreammo',
maintainer_email='1171031749@qq.com',
license='BSD License',
packages=find_packages(),
platforms=["all"],
url='https://github.com/dream-mo/pyphp',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'pymysql>=0.9.2'
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dreammo/pyphp.git
git@gitee.com:dreammo/pyphp.git
dreammo
pyphp
pyphp
master

搜索帮助