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!
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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