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.

20 lines
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. )