forked from moreonion/drupy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 970 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 970 Bytes
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 setuptools import setup
setup(
name='drupy',
version='0.6',
description='Python based deployment tool for drupal',
long_description='Fast, multisite capable drupal deployment tool',
author='Roman Zimmermann',
author_email='torotil@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: System :: Software Distribution',
],
keywords='drupal drupy build',
url='https://github.com/moreonion/drupy',
download_url='https://github.com/moreonion/drupy/archive/v0.6.tar.gz',
packages=['drupy'],
entry_points={
'console_scripts': ['drupy = drupy.runner:main'],
},
include_package_data=True,
extras_require = {
'yaml': ['ruamel.yaml<=0.15.51'],
}
)