IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

setup.py adjustments

tags/0.92
parent
commit
9f0c28c871
3 changed files with 7 additions and 1 deletions
  1. +2
    -0
      .gitignore
  2. +1
    -0
      README
  3. +4
    -1
      setup.py

+ 2
- 0
.gitignore View File

@@ -1,2 +1,4 @@
__pycache__
/build/
/dist/
/MANIFEST

+ 1
- 0
README View File

@@ -0,0 +1 @@
Focker is a FreeBSD image orchestration tool in the vein of Docker.

+ 4
- 1
setup.py View File

@@ -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"
]
)

Loading…
Cancel
Save