From 9f0c28c871d7f05ad41fc96a99cac69fb8bd226b Mon Sep 17 00:00:00 2001 From: Stanislaw Adaszewski Date: Mon, 27 Apr 2020 18:42:26 +0200 Subject: [PATCH] setup.py adjustments --- .gitignore | 2 ++ README | 1 + setup.py | 5 ++++- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 README 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" ] )