-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
31 lines (29 loc) · 1.01 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
from distutils.core import setup
import fabtastic
long_description = open('README.rst').read()
setup(
name='django-fabtastic',
version=fabtastic.VERSION,
packages=['fabtastic',
'fabtastic.db',
'fabtastic.fabric',
'fabtastic.fabric.commands',
'fabtastic.management',
'fabtastic.management.commands',
'fabtastic.util'],
description='A Django app that uses Django manage.py extension commands with Fabric for deployment.',
long_description=long_description,
author='Gregory Taylor',
author_email='[email protected]',
license='BSD License',
url='http://github.com/duointeractive/django-fabtastic',
platforms=["any"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)