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!
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

20 lignes
661B

  1. from distutils.core import setup
  2. setup(
  3. name='focker',
  4. version='0.95',
  5. author='Stanislaw Adaszewski',
  6. author_email='s.adaszewski@gmail.com',
  7. url='https://github.com/sadaszewski/focker',
  8. packages=['focker'],
  9. license='The GNU General Public License v3.0',
  10. description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
  11. long_description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
  12. scripts=['scripts/focker', 'scripts/focker-bsdinstall', 'scripts/focker-mirrorselect'],
  13. install_requires=[
  14. "tabulate",
  15. "jailconf",
  16. "pyyaml"
  17. ]
  18. )