[7564] | 1 | from setuptools import setup, find_packages |
---|
| 2 | |
---|
| 3 | version = '0.1dev' |
---|
| 4 | |
---|
| 5 | install_requires = [ |
---|
| 6 | 'setuptools', |
---|
| 7 | 'multimechanize', |
---|
| 8 | ] |
---|
| 9 | |
---|
| 10 | tests_require = [] |
---|
| 11 | docs_require = [] |
---|
| 12 | |
---|
| 13 | def read(*rnames): |
---|
| 14 | return open(os.path.join(os.path.dirname(__file__), *rnames)).read() |
---|
| 15 | |
---|
| 16 | long_description = ( |
---|
| 17 | read('README.txt') |
---|
| 18 | + '\n\n' |
---|
| 19 | + read('CHANGES.txt') |
---|
| 20 | + '\n\n' |
---|
| 21 | + 'Download\n' |
---|
| 22 | + '********\n' |
---|
| 23 | ) |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | setup( |
---|
| 28 | name = 'waeup.stress', |
---|
| 29 | version = version, |
---|
| 30 | description = 'stress tests for waeup portal', |
---|
| 31 | long_description = long_description, |
---|
| 32 | keywords = 'stress test waeup sirp multi-mechanize', |
---|
| 33 | # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
| 34 | classifiers = [ |
---|
| 35 | 'Development Status :: 3 - Alpha', |
---|
| 36 | 'Environment :: Web Environment', |
---|
| 37 | 'Intended Audience :: Education', |
---|
| 38 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
---|
| 39 | 'Programming Language :: Python', |
---|
| 40 | 'Operating System :: POSIX', |
---|
| 41 | 'Operating System :: POSIX :: Linux', |
---|
| 42 | 'Framework :: Zope3', |
---|
| 43 | 'Topic :: Education', |
---|
| 44 | 'Topic :: Internet :: WWW/HTTP', |
---|
| 45 | ], |
---|
| 46 | author = "The WAeUP team.", |
---|
| 47 | author_email = "", |
---|
| 48 | url = "http://www.waeup.org/", |
---|
| 49 | license = "GPL", |
---|
| 50 | package_dir = {'': 'src'}, |
---|
| 51 | packages= find_packages('src'), |
---|
| 52 | namespace_packages = ['waeup',], |
---|
| 53 | include_package_data = True, |
---|
| 54 | zip_safe = False, |
---|
| 55 | install_requires = install_requires, |
---|
| 56 | tests_require = tests_require, |
---|
| 57 | extras_require = dict( |
---|
| 58 | test = tests_require, |
---|
| 59 | docs = docs_require, |
---|
| 60 | ), |
---|
| 61 | entry_points=""" |
---|
| 62 | # Add entry points here |
---|
| 63 | [console_scripts] |
---|
| 64 | # sirp-debug = grokcore.startup:interactive_debug_prompt |
---|
| 65 | # sirpctl = grokcore.startup:zdaemon_controller |
---|
| 66 | """, |
---|
| 67 | ) |
---|