diff --git a/.gitignore b/.gitignore index 2774e31..38dc599 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ __pycache__ /build/ +/dist/ +/MANIFEST diff --git a/README b/README new file mode 100644 index 0000000..e653af9 --- /dev/null +++ b/README @@ -0,0 +1 @@ +Focker is a FreeBSD image orchestration tool in the vein of Docker. diff --git a/setup.py b/setup.py index 19fdd5f..e9d1dc5 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,9 @@ from distutils.core import setup setup( name='focker', version='0.9', + author='Stanislaw Adaszewski', + author_email='s.adaszewski@gmail.com', + url='https://github.com/sadaszewski/focker', packages=['focker'], license='The GNU General Public License v3.0', description='Focker is a FreeBSD image orchestration tool in the vein of Docker.', @@ -11,6 +14,6 @@ setup( install_requires=[ "tabulate", "jailconf", - "yaml" + "pyyaml" ] )