1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/xavier-lam-qiniu-ufop

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
setup.py 2.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
xavier-lam Отправлено 09.06.2019 15:49 2762e8a
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
import re
from setuptools import find_packages, setup
package = dict()
with open(os.path.join("qiniu_ufop", "__init__.py"), "r") as f:
lines = f.readlines()
for line in lines:
match = re.match(r"(__\w+?__)\s*=\s*(.+)$", line)
if match:
package[match.group(1)] = eval(match.group(2))
with open("README.md", "rb") as f:
long_description = f.read().decode("utf-8")
with open("requirements.txt") as f:
requirements = [l for l in f.read().splitlines() if l]
setup(
name=package["__title__"],
version=package["__version__"],
author=package["__author__"],
author_email=package["__author_email__"],
url=package["__url__"],
packages=find_packages(exclude=('tests', 'tests.*')),
keywords=["qiniu", "ufop", "七牛"],
description=package["__description__"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
include_package_data=True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
],
entry_points = dict(
console_scripts=[
"qiniu-ufop = qiniu_ufop.management:main"
],
),
)

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/xavier-lam-qiniu-ufop.git
git@api.gitlife.ru:oschina-mirror/xavier-lam-qiniu-ufop.git
oschina-mirror
xavier-lam-qiniu-ufop
xavier-lam-qiniu-ufop
master