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 kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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