-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
44 lines (41 loc) · 1.3 KB
/
setup.py
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
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="django-deployer",
version="0.1.6",
description="Django deployment tool for popular PaaS providers",
long_description=open('README.rst').read() + '\n\n' + open('CHANGES.rst').read(),
keywords="PaaS Django Dotcloud Stackato Heroku Gondor AWS OpenShift GAE appengine fabric deployment",
author="Nate Aune",
author_email="nate@appsembler.com",
url="http://natea.github.io/django-deployer",
license="MIT",
packages=find_packages(),
include_package_data = True,
install_requires=[
'fabric==1.6.0', # formerly 1.4.3
'jinja2==2.6',
'heroku==0.1.2',
'dotcloud==0.9.4',
'gondor==1.2.2',
'pyyaml==3.10',
'sphinx==1.1.3',
'requests==0.14.2',
'GitPython',
],
classifiers=(
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
),
entry_points={
'console_scripts': [
'deployer-init = django_deployer.main:add_fabfile',
]
},
)