-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 885 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import fabkins
setup(
name='fabkins',
version=fabkins.__version__,
install_requires=["Fabric", "Flask", "gevent-websocket", "clize"],
packages=find_packages(),
author="fspot",
author_email="fred@fspot.org",
description="Fabkins, a femto-jenkins based on fabfiles",
long_description=''.join(open('README.md').readlines()[:16]),
include_package_data=True,
zip_safe=False,
url='http://github.com/fspot/fabkins',
entry_points = {
'console_scripts': [
'fabkins = fabkins.app:main_entry_point',
'fabkins-patch-venv = fabkins.patch:main_entry_point',
'fabkins-gen-conf = fabkins.gen:conf_entry_point',
'fabkins-gen-static = fabkins.gen:static_entry_point',
],
},
license='MIT',
)