dockercloud

This commit is contained in:
tifayuki 2016-01-14 13:12:51 +01:00
commit 2d9586a8a1
41 changed files with 2701 additions and 2 deletions

40
setup.py Normal file
View file

@ -0,0 +1,40 @@
import codecs
import os
import re
from setuptools import setup, find_packages
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, encoding='utf-8') as fobj:
return fobj.read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError('Unable to find version string.')
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name="python-dockercloud",
version=find_version('dockercloud', '__init__.py'),
packages=find_packages(),
install_requires=install_requires,
provides=['docker'],
include_package_data=True,
author="Docker, Inc.",
author_email="info@docker.com",
description="Python Library for Dockercloud",
license="Apache v2",
keywords="docker cloud",
url="http://cloud.docker.com/",
test_suite="tests",
)