Skip to content

Commit 6488422

Browse files
committed
Rename to drupy.
1 parent 550bed5 commit 6488422

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
dbuild.py
2-
=========
1+
drupy
2+
=====
33

44
A multisite capable Drupal site-builder based on JSON-recipes.
55

File renamed without changes.
File renamed without changes.
File renamed without changes.

dbuild/runner.py renamed to drupy/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import sys
99
from glob import glob
1010

11-
from dbuild import resolver, objects
11+
from . import resolver, objects
1212
from .targets import (
1313
DBInstallTarget,
1414
SiteBuildTarget,
File renamed without changes.

examples/example/example.site.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"COMMENT": "This is the profile used if we execute dbuild.py db-install example",
2+
"COMMENT": "This is the profile used if we execute drupy db-install example",
33
"profile": "example_profile",
44
"db-url": "mysql://user:password@localhost/example",
55
"site-mail": "admin@example.com",

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(
4-
name='dbuild.py',
4+
name='drupy',
55
version='0.1',
66
description='Python based deployment tool for drupal',
77
long_description='Fast, multisite capable drupal deployment tool',
@@ -13,13 +13,13 @@
1313
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
1414
'Topic :: System :: Software Distribution',
1515
],
16-
keywords='drupal dbuild dbuild.py drush make',
16+
keywords='drupal drupy build',
1717

18-
url = 'https://github.com/torotil/dbuild.py',
18+
url = 'https://github.com/moreonion/drupy',
1919

20-
packages=['dbuild'],
20+
packages=['drupy'],
2121
entry_points = {
22-
'console_scripts': ['dbuild.py = dbuild.runner:main'],
22+
'console_scripts': ['drupy = drupy.runner:main'],
2323
},
2424
include_package_data = True,
2525
)

0 commit comments

Comments
 (0)