-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
46 lines (44 loc) · 1.56 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
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
]
setup(
name="django-fagungis",
version=__import__('fagungis').get_version(),
url='https://github.com/DNX/django-fagungis',
download_url='https://github.com/DNX/django-fagungis',
license='BSD License',
description="DJANGO + FAbric + GUnicorn + NGInx + Supervisor deployment",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Denis Darii',
author_email='denis.darii@gmail.com',
keywords='django fabric gunicorn nginx supervisor',
packages=find_packages(),
namespace_packages=['fagungis'],
include_package_data=True,
zip_safe=False,
classifiers=CLASSIFIERS,
install_requires=[
'Fabric>=1.3',
],
)