forked from django/djangobench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.14 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "djangobench",
version = "0.9",
description = "A harness and a set of benchmarks for measuring Django's performance over time.",
long_description = read('README.rst'),
url = 'http://github.com/jacobian/djangobench',
license = 'BSD',
author = 'Jacob Kaplan-Moss',
author_email = '[email protected]',
packages = find_packages(),
include_package_data = True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: System :: Benchmark'
],
install_requires = ['argparse==1.1', 'Unipath==0.2.1', 'simplejson==2.1.1'],
entry_points = {
'console_scripts': ['djangobench = djangobench.main:main']
}
)