passerelle_manage.py -> manage.py

This commit is contained in:
Thomas NOËL 2014-10-02 10:08:49 +02:00
parent 5dbf5387b8
commit a2c0a0ac88
3 changed files with 8 additions and 8 deletions

4
README
View File

@ -3,7 +3,7 @@ Initializing the database
To create the database, execute the following line:
./passerelle_manage.py --config=config_example.py syncdb --migrate
./manage.py --config=config_example.py syncdb --migrate
The new database is created inside `passerelle.sqlite3` in the current directory.
@ -12,7 +12,7 @@ Running
The command line for starting is:
./passerelle_manage.py --config=config_example.py runserver
./manage.py --config=config_example.py runserver
Passerelle is available on http://127.0.0.1:80000

View File

@ -39,21 +39,21 @@ class eo_sdist(sdist):
setup(name='passerelle',
version=get_version(),
license='AGPLv3',
description='',
description='Passerelle provides an uniform access to multiple data sources and services.',
url='https://dev.entrouvert.org/projects/passerelle/',
download_url='http://repos.entrouvert.org/passerelle.git/',
author="Entr'ouvert",
author_email="info@entrouvert.com",
packages=find_packages(os.path.dirname(__file__) or '.'),
scripts=['passerelle_manage.py'],
include_package_data = True,
scripts=['manage.py'],
include_package_data=True,
install_requires=[
'gadjo',
'django >= 1.5.1, < 1.6',
'django-model-utils',
'django >= 1.6, < 1.7',
'south >= 0.8, < 0.9',
'django-model-utils',
'django-jsonresponse==0.10',
'jsonfield',
'gadjo',
],
cmdclass={'sdist': eo_sdist},
)