forked from h3/python-dploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 998 Bytes
/
setup.py
File metadata and controls
41 lines (34 loc) · 998 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
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
VERSION = '0.1.0'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='dploy',
version=VERSION,
description='Deployment utilities for fabric',
long_description=(read('README.md')),
author='Maxime Haineault',
author_email='haineault@gmail.com',
license='MIT',
url='https://github.com/h3/fabric-contrib-dploy',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
scripts=['dploy/bin/python-dploy'],
install_requires=[
'PyYAML>=3.12',
'Jinja2>=2.9.5',
'docopt>=0.6.2',
'Fabric3==1.14.post1',
'fabtools>=0.20.0',
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)