setup.py 385 B

1234567891011121314151617181920
  1. from setuptools import setup, find_packages
  2. setup(name='frank',
  3. version='0.0.1',
  4. license="AGPL",
  5. packages=find_packages(exclude=['tests']),
  6. install_requires=[
  7. 'Click',
  8. ],
  9. entry_points='''
  10. [console_scripts]
  11. frankci=frank.frank:cli
  12. '''
  13. )
  14. # licenses
  15. # Add mention that we use Shell, flask and PyYAML