1234567891011121314151617181920 |
- from setuptools import setup, find_packages
- setup(name='frank',
- version='0.0.1',
- license="AGPL",
- packages=find_packages(exclude=['tests']),
- install_requires=[
- 'Click',
- ],
- entry_points='''
- [console_scripts]
- frankci=frank.frank:cli
- '''
- )
- # licenses
- # Add mention that we use Shell, flask and PyYAML
|