public
Description: Schevo benchmarking tools
Homepage: http://schevo.org/
Clone URL: git://github.com/11craft/schevobenchmark.git
schevobenchmark / setup.py
100644 75 lines (52 sloc) 1.793 kb
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
67
68
69
70
71
72
73
74
75
__version__ = '3.1a1'
 
from setuptools import setup, Extension, find_packages
import sys, os
import textwrap
 
 
setup(
    name="SchevoBenchmark",
 
    version=__version__,
 
    description="Performance benchmarking tool for Schevo",
 
    long_description=textwrap.dedent("""
SchevoBenchmark runs a series of benchmarks to evaluate the
performance of the Schevo_ DBMS. Typically, developers of Schevo
or Schevo backends will find this useful when optimizing
algorithms used by Schevo.
You can also get the `latest development version
<http://getschevo.org/hg/repos.cgi/schevobenchmark-dev/archive/tip.tar.gz#egg=SchevoBenchmark-dev>`__.
 
.. _Schevo: http://schevo.org/
"""),
 
    classifiers=[
    'Development Status :: 4 - Beta',
    'Environment :: Console',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Topic :: Database :: Database Engines/Servers',
    'Topic :: Software Development :: Libraries :: Application Frameworks',
    ],
 
    keywords='database dbms',
 
    author='Orbtech, L.L.C. and contributors',
    author_email='schevo@googlegroups.com',
 
    url='http://schevo.org/wiki/SchevoBenchmark',
 
    license='LGPL',
 
    platforms=['UNIX', 'Windows'],
 
    packages=find_packages(exclude=['doc', 'tests']),
 
    include_package_data=True,
 
    zip_safe=False,
 
    install_requires=[
    'Schevo >= 3.1a1dev',
    ],
 
    tests_require=[
    'nose >= 0.10.1',
    ],
    test_suite='nose.collector',
 
    extras_require={
    },
 
    dependency_links = [
    ],
 
    entry_points = """
[schevo.schevo_command]
benchmark = schevobenchmark.script:start
""",
    )