source: main/waeup.stress/trunk/setup.py @ 8672

Last change on this file since 8672 was 8672, checked in by uli, 12 years ago

Decouple setup/teardown from multimechanize.

File size: 2.3 KB
Line 
1import os
2from setuptools import setup, find_packages
3
4version = '0.1dev'
5
6install_requires =[
7    'setuptools',
8    'multi-mechanize',
9    'numpy',
10    'matplotlib',
11    'waeup.kofa',
12    ],
13
14# Having beaker installed additionally is a feature very recommended
15# for production use. The default buildout includes beaker for tests,
16# start scripts, and other parts that can benefit from it. The windows
17# buildout does not include it due to compiling problems with the
18# beaker package.
19beaker_require = [
20    'dolmen.beaker',
21    ]
22
23tests_require = [
24    'pytest',
25    'pytest-xdist',
26    'pytest-cov',
27    ]
28
29docs_require = [
30    'Sphinx',
31    'collective.recipe.sphinxbuilder',
32    'docutils',
33    'roman',
34    'repoze.sphinx.autointerface',
35    ]
36
37def read(*rnames):
38    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
39
40long_description = (
41    read('README.rst')
42    + '\n\n'
43    + read('CHANGES.rst')
44    + '\n\n'
45    + 'Download\n'
46    + '********\n'
47    )
48
49setup(name = 'waeup.stress',
50      version = version,
51      description = "Stresstests for WAeUP Kofa",
52      long_description = long_description,
53
54      keywords = "waeup kofa stress test",
55      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
56      classifiers = [
57        'Development Status :: 3 - Alpha',
58        'Environment :: Web Environment',
59        'Intended Audience :: Education',
60        'License :: OSI Approved :: GNU General Public License (GPL)',
61        'Programming Language :: Python',
62        'Operating System :: POSIX',
63        'Operating System :: POSIX :: Linux',
64        'Framework :: Zope3',
65        'Topic :: Education',
66        'Topic :: Internet :: WWW/HTTP',
67        ],
68      author = "The WAeUP team.",
69      author_email = "",
70      url = "http://www.waeup.org/",
71      license = "GPL",
72      package_dir = {'': 'src'},
73      packages= find_packages('src'),
74      namespace_packages = ['waeup',],
75      include_package_data = True,
76      zip_safe = False,
77      install_requires = install_requires,
78      tests_require = tests_require,
79      extras_require = dict(
80        test = tests_require,
81        docs = docs_require,
82        beaker = beaker_require,
83        ),
84      entry_points="""
85      # Add entry points here
86      [console_scripts]
87      bootstrap_instances = waeup.stress:bootstrap
88      stress-run = waeup.stress.run:main
89      """,
90      )
Note: See TracBrowser for help on using the repository browser.