First version
[fnpdeploy.git] / setup.py
1 #!/usr/bin/env python
2 from setuptools import setup
3
4
5 setup(
6     name='deploy_setup',
7     version='0.1',
8     author='Radek Czajka',
9     author_email='rczajka@rczajka.pl',
10     url='',
11     install_requires=['git-remote-run>=1.2'],
12     packages=['deploy_setup'],
13     package_data={
14         'deploy_setup': ['templates/*'],
15     },
16     entry_points={
17         'console_scripts': [
18             'deploy-setup = deploy_setup.cli:run',
19         ],
20     },
21     license='LICENSE',
22     description='.',
23     long_description="",
24 )