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!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
468B

  1. from distutils.core import setup
  2. setup(
  3. name='focker',
  4. version='0.9',
  5. packages=['focker'],
  6. license='The GNU General Public License v3.0',
  7. description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
  8. long_description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
  9. scripts=['scripts/focker'],
  10. install_requires=[
  11. "tabulate",
  12. "jailconf",
  13. "yaml"
  14. ]
  15. )