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!
Procházet zdrojové kódy

Added setup.py

tags/0.92
Stanislaw Adaszewski před 4 roky
rodič
revize
ad5421e16b
17 změnil soubory, kde provedl 21 přidání a 0 odebrání
  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 Zobrazit soubor

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

Fockerfile → example/Fockerfile Zobrazit soubor


focker-compose.yml → example/focker-compose.yml Zobrazit soubor


__init__.py → focker/__init__.py Zobrazit soubor


compose.py → focker/compose.py Zobrazit soubor


focker.py → focker/focker.py Zobrazit soubor


image.py → focker/image.py Zobrazit soubor


jail.py → focker/jail.py Zobrazit soubor


misc.py → focker/misc.py Zobrazit soubor


mount.py → focker/mount.py Zobrazit soubor


snapshot.py → focker/snapshot.py Zobrazit soubor


steps.py → focker/steps.py Zobrazit soubor


volume.py → focker/volume.py Zobrazit soubor


zfs.py → focker/zfs.py Zobrazit soubor


+ 1
- 0
requirements.txt Zobrazit soubor

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

+ 3
- 0
scripts/focker Zobrazit soubor

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

python3 -m focker.focker "$@"

+ 16
- 0
setup.py Zobrazit soubor

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

Načítá se…
Zrušit
Uložit