-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
35 lines (34 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from woven import get_version
setup(name='woven',
version=get_version(),
description='A deployment tool for Django built on Fabric',
author='Brett Haydon',
author_email='[email protected]',
url='http://github.com/bretth/woven',
download_url='http://github.com/bretth/woven/downloads/',
package_dir={'woven': 'woven'},
packages=find_packages(),
scripts=['bin/woven-admin.py'],
include_package_data = True,
package_data={'woven': ['templates/woven/*.txt',
'templates/woven/nginx/*.conf',
'templates/woven/apache2/*.conf',
'templates/woven/ssh/sshd_config',
'templates/etc/*',
'templates/*.py',
'templates/distributions_template/*',
]},
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
long_description="See http://packages.python.org/woven/ for documentation",
install_requires=['Fabric'],
)