This repository was archived by the owner on Mar 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
54 lines (48 loc) · 1.68 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
import os
from distutils.spawn import find_executable
from setuptools import setup, find_packages
from docker_registry_util import __version__
def include_readme():
try:
import pandoc
except ImportError:
return ''
pandoc.core.PANDOC_PATH = find_executable('pandoc')
readme_file = os.path.join(os.path.dirname(__file__), 'README.md')
doc = pandoc.Document()
with open(readme_file, 'r') as rf:
doc.markdown = rf.read().encode()
return doc.rst.decode()
setup(
name='docker-registry-util',
version=__version__,
packages=find_packages(),
install_requires=['setuptools', 'requests'],
url='https://github.com/merll/docker-registry-util',
license='MIT',
author='Matthias Erll',
author_email='[email protected]',
description='Search and cleanup on Docker Registry v2.',
long_description=include_readme(),
platforms=['OS Independent'],
keywords=['docker', 'registry', 'query', 'cleanup'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Software Distribution',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
entry_points={
'console_scripts': [
'dregutil = docker_registry_util.cli:main',
],
},
include_package_data=True,
)