-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (52 loc) · 1.97 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
import setuptools
except ImportError:
import distutils.core as setuptools
__author__ = 'Anton Tiurin'
__copyright__ = 'Copyright 2014'
__credits__ = []
__license__ = 'Apache 2.0'
__version__ = '0.1.3'
__maintainer__ = 'Anton Tiurin'
__email__ = 'noxiouz@yandex.ru'
__status__ = 'Production'
__title__ = 'docker-registry-driver-elliptics'
__build__ = 0x000000
__url__ = 'https://github.com/noxiouz/docker-registry-driver-elliptics'
__description__ = 'Docker registry elliptics driver'
d = 'https://github.com/noxiouz/docker-registry-driver-elliptics/archive/\
master.zip'
setuptools.setup(
name=__title__,
version=__version__,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url=__url__,
description=__description__,
long_description=open('./README.md').read(),
download_url=d,
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
# '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'],
license=open('./LICENSE').read(),
namespace_packages=['docker_registry', 'docker_registry.drivers'],
packages=['docker_registry', 'docker_registry.drivers'],
install_requires=open('./requirements.txt').read(),
zip_safe=False,
tests_require=open('./tests/requirements.txt').read(),
test_suite='nose.collector'
)