X Tutup
Skip to content

Commit 6d3e29e

Browse files
committed
IN PROGRESS - issue SESPRINGPYTHONPY-50: Investigate integrating PyUnit testing with bamboo CI
http://jira.springframework.org/browse/SESPRINGPYTHONPY-50 Merged r55:57 into trunk, inspected all changes, and confirmed build scripts are correctly updated. git-svn-id: https://src.springframework.org/svn/se-springpython-py/trunk/springpython@58 ce8fead1-4192-4296-8608-a705134b927f
1 parent a711fc6 commit 6d3e29e

File tree

7 files changed

+29
-28
lines changed

7 files changed

+29
-28
lines changed

.project

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>springpython</name>
4-
<comment></comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.python.pydev.PyDevBuilder</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
</buildSpec>
14-
<natures>
15-
<nature>org.python.pydev.pythonNature</nature>
16-
</natures>
17-
</projectDescription>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>springpython</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.python.pydev.PyDevBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.python.pydev.pythonNature</nature>
16+
</natures>
17+
</projectDescription>

samples/MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
recursive-include petclinic README configure.py *.txt *.xml *.html *.png *.gif *.jpg *.template *.css
2-
recursive-include springwiki README configure.py *.txt *.xml *.html *.png *.gif *.jpg *.template *.css
1+
recursive-include petclinic README configure.py *.txt *.xml *.html *.png
2+
recursive-include springwiki README *.txt *.xml *.png *.gif *.jpg *.css
33
recursive-include springirc coily springbot.py *.txt

samples/README

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This is a collection of sample applications that use the Spring Python framework.
2+
3+
Each sample contains its own README file. Read each one for more detailed information about running and using
4+
each sample application.

samples/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222

2323
from distutils.core import setup
2424

25-
setup(name='springpython-examples',
25+
setup(name='springpython-samples',
2626
version='0.6.0',
27-
description='Spring Python examples',
28-
long_description='A collection of small examples utilizing the features of Spring Python.',
27+
description='Spring Python samples',
28+
long_description='A collection of small samples utilizing the features of Spring Python.',
2929
author='Greg L. Turnquist',
3030
author_email='gregturn at mindspring dot com',
3131
url='https://springpython.webfactional.com',

src/MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
recursive-include springpython NOTICE README *.txt *.xml *.png *.jpg
1+
recursive-include springpython COPYRIGHT *.txt *.png *.jpg
File renamed without changes.

src/setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,9 @@
4040
'springpython.security',
4141
'springpython.security.context',
4242
'springpython.security.providers',
43-
'springpython.security.userdetails',
44-
'springpython.test',
45-
'springpython.test.support'
43+
'springpython.security.userdetails'
4644
],
47-
package_data={'springpython': ["README", "NOTICE", "LICENSE.txt"],
48-
'springpython.test.support': ['*.xml', '*.txt']},
45+
package_data={'springpython': ["README", "COPYRIGHT", "LICENSE.txt"]},
4946
download_url="http://sourceforge.net/projects/springpython/",
5047
classifiers=["License :: OSI Approved :: Apache Software License",
5148
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)
X Tutup