Ai
1 Star 0 Fork 0

lix/nextcloud-API

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 883 Bytes
一键复制 编辑 原始数据 按行查看 历史
Matěj Týč 提交于 2019-03-03 08:57 +08:00 . Tweaked setup.py according to best practices.
import os
import setuptools
SETUPDIR = os.path.dirname(__file__)
PKGDIR = os.path.join(SETUPDIR, 'src')
with open(os.path.join(SETUPDIR, 'README.md'), 'r') as f:
long_description = f.read()
setuptools.setup(
name='nextcloud',
version='0.0.1',
author='EnterpriseyIntranet',
description="Python wrapper for NextCloud api",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/EnterpriseyIntranet/nextcloud-API",
packages=setuptools.find_packages(PKGDIR),
include_package_data=True,
install_requires=['requests'],
package_dir={'': 'src'},
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: GNU General Public License (GPL)',
"Operating System :: OS Independent",
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leetomlee123/nextcloud-API.git
git@gitee.com:leetomlee123/nextcloud-API.git
leetomlee123
nextcloud-API
nextcloud-API
master

搜索帮助