-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (39 loc) · 1.44 KB
/
setup.py
File metadata and controls
executable file
·43 lines (39 loc) · 1.44 KB
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
from setuptools import setup, find_packages
execfile('django_fabfile/version.py') # Set __version__ into namespace.
setup(
name='django-fabfile',
url='http://packages.python.org/django-fabfile',
download_url='http://pypi.python.org/pypi/django-fabfile/',
version=__version__,
description='Fabric tasks for Django and Amazon Web Services',
install_requires=[
'boto>=2.4.1',
'Fabric>=1.4.3',
'python-dateutil>=1.5,<2.0',
],
long_description=open('README.rst').read(),
author='oDesk',
author_email='django-fabfile@odeskps.com',
maintainer='Max Chervonec',
maintainer_email='electedm@odesk.com',
packages=find_packages(),
license='GNU GPLv3',
package_data = {
'': ['*.def', '*.txt', '*.rst', 'encrypted_root.tar.gz'],
},
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
)