1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#!/usr/bin/env python
"""
Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import re
import sys
try:
from distribute.core import setup
except ImportError:
from setuptools import setup
if sys.version_info < (2, 6):
print "Spring Python only supports Python 2.6 and higher"
sys.exit(1)
setup(name='springpython',
version='1.2.0.FINAL',
description='Spring Python',
long_description='Spring Python is an offshoot of the Java-based SpringFramework, targeted for Python. Spring provides many useful features, and I wanted those same features available when working with Python.',
author='Greg L. Turnquist',
author_email='greg.turnquist at springsource dot com',
url='http://springpython.webfactional.com',
platforms = ["Python >= 2.6"],
license='Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
scripts=['plugins/coily'],
packages=['springpython',
'springpython.aop',
'springpython.jms',
'springpython.config',
'springpython.container',
'springpython.context',
'springpython.database',
'springpython.factory',
'springpython.remoting',
'springpython.remoting.hessian',
'springpython.remoting.pyro',
'springpython.security',
'springpython.security.context',
'springpython.security.providers',
'springpython.security.userdetails'
],
package_data={'springpython': ["README", "COPYRIGHT", "LICENSE.txt"]},
download_url="http://s3.amazonaws.com/dist.springframework.org/release/EXTPY/springpython-1.2.0.FINAL.tar.gz",
classifiers=["License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Operating System :: OS Independent"
]
)
|