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!
Explorar el Código

Added setup.py

tags/0.92
Stanislaw Adaszewski hace 4 años
padre
commit
ad5421e16b
Se han modificado 17 ficheros con 21 adiciones y 0 borrados
  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 Ver fichero

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

Fockerfile → example/Fockerfile Ver fichero


focker-compose.yml → example/focker-compose.yml Ver fichero


__init__.py → focker/__init__.py Ver fichero


compose.py → focker/compose.py Ver fichero


focker.py → focker/focker.py Ver fichero


image.py → focker/image.py Ver fichero


jail.py → focker/jail.py Ver fichero


misc.py → focker/misc.py Ver fichero


mount.py → focker/mount.py Ver fichero


snapshot.py → focker/snapshot.py Ver fichero


steps.py → focker/steps.py Ver fichero


volume.py → focker/volume.py Ver fichero


zfs.py → focker/zfs.py Ver fichero


+ 1
- 0
requirements.txt Ver fichero

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

+ 3
- 0
scripts/focker Ver fichero

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

python3 -m focker.focker "$@"

+ 16
- 0
setup.py Ver fichero

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

Cargando…
Cancelar
Guardar