40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
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",
|
|
)
|