move django_openstack out of src
This commit is contained in:
parent
d744317aef
commit
764efad3b6
@ -2,15 +2,22 @@ PYTHON=`which python`
|
|||||||
DESTDIR=/
|
DESTDIR=/
|
||||||
BUILDIR=$(CURDIR)/debian/django-openstack
|
BUILDIR=$(CURDIR)/debian/django-openstack
|
||||||
PROJECT=django-openstack
|
PROJECT=django-openstack
|
||||||
VERSION=0.3.0
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
@echo "make buildout - Run through buildout"
|
||||||
|
@echo "make test - Run tests"
|
||||||
@echo "make source - Create source package"
|
@echo "make source - Create source package"
|
||||||
@echo "make install - Install on local system"
|
@echo "make install - Install on local system"
|
||||||
@echo "make buildrpm - Generate a rpm package"
|
@echo "make buildrpm - Generate a rpm package"
|
||||||
@echo "make builddeb - Generate a deb package"
|
@echo "make builddeb - Generate a deb package"
|
||||||
@echo "make clean - Get rid of scratch and byte files"
|
@echo "make clean - Get rid of scratch and byte files"
|
||||||
|
|
||||||
|
buildout: ./bin/buildout
|
||||||
|
./bin/buildout
|
||||||
|
|
||||||
|
./bin/buildout:
|
||||||
|
$(PYTHON) bootstrap.py
|
||||||
|
|
||||||
source:
|
source:
|
||||||
$(PYTHON) setup.py sdist $(COMPILE)
|
$(PYTHON) setup.py sdist $(COMPILE)
|
||||||
|
|
||||||
|
@ -13,13 +13,11 @@ setup(
|
|||||||
long_description = read('README'),
|
long_description = read('README'),
|
||||||
author = 'Devin Carlen',
|
author = 'Devin Carlen',
|
||||||
author_email = 'devin.carlen@gmail.com',
|
author_email = 'devin.carlen@gmail.com',
|
||||||
packages = find_packages('src'),
|
packages = find_packages(),
|
||||||
package_dir = {'': 'src'},
|
|
||||||
package_data = {'django_openstack':
|
package_data = {'django_openstack':
|
||||||
[s[len('src/django_openstack/'):] for s in
|
[s[len('django_openstack/'):] for s in
|
||||||
findall('src/django_openstack/templates')]},
|
findall('django_openstack/templates')]},
|
||||||
install_requires = ['setuptools', 'boto==1.9b', 'mox>=0.5.0',
|
install_requires = ['setuptools', 'mox>=0.5.0'],
|
||||||
'nova-adminclient'],
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user