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

Added setup.py

tags/0.92
parent
commit
ad5421e16b
17 changed files with 21 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +0
    -0
      example/Fockerfile
  3. +0
    -0
      example/focker-compose.yml
  4. +0
    -0
      focker/__init__.py
  5. +0
    -0
      focker/compose.py
  6. +0
    -0
      focker/focker.py
  7. +0
    -0
      focker/image.py
  8. +0
    -0
      focker/jail.py
  9. +0
    -0
      focker/misc.py
  10. +0
    -0
      focker/mount.py
  11. +0
    -0
      focker/snapshot.py
  12. +0
    -0
      focker/steps.py
  13. +0
    -0
      focker/volume.py
  14. +0
    -0
      focker/zfs.py
  15. +1
    -0
      requirements.txt
  16. +3
    -0
      scripts/focker
  17. +16
    -0
      setup.py

+ 1
- 0
.gitignore View File

@@ -1 +1,2 @@
__pycache__
/build/

Fockerfile → example/Fockerfile View File


focker-compose.yml → example/focker-compose.yml View File


__init__.py → focker/__init__.py View File


compose.py → focker/compose.py View File


focker.py → focker/focker.py View File


image.py → focker/image.py View File


jail.py → focker/jail.py View File


misc.py → focker/misc.py View File


mount.py → focker/mount.py View File


snapshot.py → focker/snapshot.py View File


steps.py → focker/steps.py View File


volume.py → focker/volume.py View File


zfs.py → focker/zfs.py View File


+ 1
- 0
requirements.txt View File

@@ -1,2 +1,3 @@
tabulate
jailconf
pyyaml

+ 3
- 0
scripts/focker View File

@@ -0,0 +1,3 @@
#!/bin/sh

python3 -m focker.focker "$@"

+ 16
- 0
setup.py View File

@@ -0,0 +1,16 @@
from distutils.core import setup
setup(
name='focker',
version='0.9',
packages=['focker'],
license='The GNU General Public License v3.0',
description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
long_description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
scripts=['scripts/focker'],
install_requires=[
"tabulate",
"jailconf",
"yaml"
]
)

Loading…
Cancel
Save