1 Star 1 Fork 17

Calvin/docker-registry

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 3.39 KB
一键复制 编辑 原始数据 按行查看 历史
Olivier 提交于 2014-12-27 15:39 . Remove redundant license field
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
import setuptools
except ImportError:
import distutils.core as setuptools
import os
import re
import sys
ver = sys.version_info
# XXX as ugly as this looks, namespaces break terribly otherwise
filename = './docker_registry/server/__init__.py'
exec(compile(open(filename, 'rb').read(), filename, 'exec'))
requirements_txt = open('./requirements/main.txt')
requirements = [line for line in requirements_txt]
if ver < (3, 0):
# Python 2 requires lzma backport
requirements.insert(0, 'backports.lzma==0.0.3,!=0.0.4')
if ver < (2, 7):
# Python 2.6 requires additional libraries
requirements.insert(0, 'argparse==1.2.1')
requirements.insert(0, 'importlib==1.0.3')
# Using this will relax dependencies to semver major matching
if 'DEPS' in os.environ and os.environ['DEPS'].lower() == 'loose':
loose = []
for item in requirements:
d = re.match(r'([^=]+)==([0-9]+)[.]([0-9]+)(?:[.]([0-9]+))?(.*)', item)
if d:
d = list(d.groups())
name = d.pop(0)
version = d.pop(0)
add = d.pop()
item = '%s>=%s,<%s%s' % (name, int(version), int(version) + 1, add)
loose.insert(0, item)
requirements = loose
# Require core (the reason this is out of req.txt is to ease tox)
requirements.insert(0, 'docker-registry-core>=2,<3')
# Explicit packages list to avoid setup_tools funkyness
packages = ['docker_registry',
'docker_registry.drivers',
'docker_registry.extensions',
'docker_registry.extras',
'docker_registry.lib',
'docker_registry.lib.index',
'docker_registry.server',
'docker_registry.storage',
]
namespaces = ['docker_registry', 'docker_registry.drivers']
package_data = {'docker_registry': ['../config/*']}
setuptools.setup(
name=__title__, # noqa
version=__version__, # noqa
author=__author__, # noqa
author_email=__email__, # noqa
maintainer=__maintainer__, # noqa
maintainer_email=__email__, # noqa
url=__url__, # noqa
description=__description__, # noqa
download_url=__download__, # noqa
long_description=open('./README.md').read(),
namespace_packages=namespaces,
packages=packages,
package_data=package_data,
entry_points={
'console_scripts': [
'docker-registry = docker_registry.run:run_gunicorn'
]
},
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
# 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.3',
# 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License'],
platforms=['Independent'],
zip_safe=False,
test_suite='nose.collector',
install_requires=requirements,
tests_require=open('./requirements/test.txt').read(),
extras_require={
'bugsnag': ['bugsnag>=2.0,<2.1'],
'newrelic': ['newrelic>=2.22,<2.23'],
'cors': ['Flask-cors>=1.8,<2.0'],
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xunxun0532/docker-registry.git
[email protected]:xunxun0532/docker-registry.git
xunxun0532
docker-registry
docker-registry
master

搜索帮助