-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (42 loc) · 1.64 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
45
from setuptools import setup, find_packages
import sys, os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
version = '0.1.2'
setup(name = 'django-fab-templates',
version = version,
description = "Django project templates that support fabric-style deployment (vagrant+ubuntu, webfaction)",
long_description=read('README.rst'),
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
], # Get strings from http://pypi.python.org/pypi?%3Aaction = list_classifiers
keywords = ['django', 'fabric', 'vagrant', 'template',
'project', 'html5', 'boilerplate', 'vm', 'virtualbox', 'paster'],
author = 'Dmitry Guyvoronsky',
author_email = '[email protected]',
url = 'https://github.com/dreamiurg/django-fab-templates',
license = 'MIT',
packages = find_packages('src'),
package_dir = {'':'src'},
include_package_data = True,
zip_safe = False,
install_requires = [
'setuptools',
'PasteScript>=1.3',
'Cheetah',
'Fabric>=0.9.5',
'jinja2',
],
entry_points = """
[paste.paster_create_template]
vagrant_project = django_fab_templates.pastertemplates:VagrantTemplate
""",
)