-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (57 loc) · 1.69 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
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
import os
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 4):
raise RuntimeError("requires Python 3.4 or newer")
import pybench
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pybench-mongodb',
version=pybench.__version__,
description="MongoDB Benchmarks in Python",
long_description=long_description,
url='https://github.com/peterschwaller/pybench-mongodb',
author='Peter Schwaller',
author_email='[email protected]',
license='All rights reserved by author, proprietary and restricted.',
packages=find_packages(exclude=['tests']),
install_requires=[
'appdirs',
'hjson',
'ijson',
'pymongo',
],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
package_data={
'': ['examples/*']
},
entry_points={
'console_scripts': [
'pybench-mongodb=pybench.main:main',
],
},
classifiers=[
'Private :: Do Not Upload',
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Environment :: Plugins',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Database :: Front-Ends',
'Topic :: Games/Entertainment',
],
setup_requires=[
'pytest-runner',
'setuptools-pep8',
'setuptools-lint',
],
)