Skip to content

Commit

Permalink
add missing details to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonroy committed Feb 5, 2018
1 parent bff4745 commit b4843fd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# sample ./setup.py file
import os
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name="docker-services",
packages=find_packages(),
use_scm_version=True,
description='Uses docker to spawn containers for services required during tests',
long_description=long_description,
url='https://github.com/dmonroy/docker-services',
author='Darwin Monroy',
author_email='[email protected]',
install_requires=[
'docker',
'pytest'
Expand Down

0 comments on commit b4843fd

Please sign in to comment.