|
Revision 9, 1.5 kB
(checked in by kevin, 2 years ago)
|
fixed the namespace in the soap response.
bumped TG requirement to 1.0 final
|
| Line | |
|---|
| 1 |
from setuptools import setup, find_packages |
|---|
| 2 |
from turbogears.finddata import find_package_data |
|---|
| 3 |
|
|---|
| 4 |
import os |
|---|
| 5 |
execfile(os.path.join("tgwebservices", "release.py")) |
|---|
| 6 |
|
|---|
| 7 |
setup( |
|---|
| 8 |
name="TGWebServices", |
|---|
| 9 |
version=version, |
|---|
| 10 |
|
|---|
| 11 |
description=description, |
|---|
| 12 |
long_description=long_description, |
|---|
| 13 |
author=author, |
|---|
| 14 |
author_email=email, |
|---|
| 15 |
url=url, |
|---|
| 16 |
license=license, |
|---|
| 17 |
|
|---|
| 18 |
install_requires = [ |
|---|
| 19 |
"TurboGears >= 1.0", |
|---|
| 20 |
"Genshi >= 0.3.4" |
|---|
| 21 |
], |
|---|
| 22 |
scripts = [], |
|---|
| 23 |
zip_safe=False, |
|---|
| 24 |
packages=find_packages(), |
|---|
| 25 |
package_data = find_package_data(where='tgwebservices', |
|---|
| 26 |
package='tgwebservices'), |
|---|
| 27 |
keywords = [ |
|---|
| 28 |
"turbogears.extension" |
|---|
| 29 |
], |
|---|
| 30 |
classifiers = [ |
|---|
| 31 |
'Development Status :: 3 - Alpha', |
|---|
| 32 |
'Operating System :: OS Independent', |
|---|
| 33 |
'Programming Language :: Python', |
|---|
| 34 |
'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 35 |
'Framework :: TurboGears', |
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
], |
|---|
| 44 |
test_suite = 'nose.collector', |
|---|
| 45 |
entry_points=""" |
|---|
| 46 |
[python.templating.engines] |
|---|
| 47 |
wsautoxml = tgwebservices.xml:AutoXMLTemplate |
|---|
| 48 |
""" |
|---|
| 49 |
) |
|---|
| 50 |
|
|---|