-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 895 Bytes
/
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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-fab',
version='1.0.4',
description='Common methods to help create fabric deplopment scripts for django',
long_description=read('README.rst'),
author='Harley Bussell',
author_email='[email protected]',
url='http://github.com/hbussell/django-fab',
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Django",
"Environment :: Console",
"Topic :: Software Development",
"Topic :: System :: Software Distribution"
],
keywords='django fabric deployment',
zip_safe=False,
license='GPL',
install_requires=[
'setuptools',
],
packages = find_packages(),
include_package_data = True,
)