Skip to content

Commit 8ed7641

Browse files
author
bdelbosc
committed
src are now in the funkload folder
1 parent a2dfe80 commit 8ed7641

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.PHONY: build pkg sdist egg install clean rpm doc
55

66
HTML_DOCS := README.html INSTALL.html CHANGES.html
7-
CSS_FILE := src/data/funkload.css
7+
CSS_FILE := funkload/data/funkload.css
88
RST2HTML := rst2html.py -t --stylesheet-path=$(CSS_FILE) --embed-stylesheet
99
TARGET := cvs.in.nuxeo.com:~/public_public_html/funkload
1010

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ See the demo_ folder contents and a report_ example.
148148
For package installed with easy_install you need to run ``fl-install-demo``
149149
to extract the demo examples.
150150

151-
.. _demo: http://svn.nuxeo.org/trac/pub/browser/funkload/trunk/src/demo/
151+
.. _demo: http://svn.nuxeo.org/trac/pub/browser/funkload/trunk/funkload/demo/
152152
.. _report: http://funkload.nuxeo.org/report-example.pdf
153153

154154
Credits

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
ez_setup.use_setuptools()
2626
from setuptools import setup, find_packages
2727
#from distutils.core import setup
28-
from src.version import __version__
28+
from funkload.version import __version__
2929

3030
setup(
3131
name="funkload",
@@ -105,7 +105,7 @@
105105
license='GPL',
106106
keywords='testing benching load performance functional monitoring',
107107
packages= ['funkload'],
108-
package_dir={'funkload': 'src'},
108+
package_dir=find_packages(),
109109
scripts=['scripts/fl-monitor-ctl', 'scripts/fl-credential-ctl',
110110
'scripts/fl-run-bench', 'scripts/fl-run-test',
111111
'scripts/fl-build-report',
@@ -135,5 +135,5 @@
135135
'demo/cmf/*', 'demo/xmlrpc/*',
136136
'demo/*.txt',
137137
'tests/*',]},
138-
test_suite = "src.tests.test_Install.test_suite",
138+
test_suite = "funkload.tests.test_Install.test_suite",
139139
)

0 commit comments

Comments
 (0)