-
Notifications
You must be signed in to change notification settings - Fork 7
/
mcsoda-setup.py
32 lines (30 loc) · 1.05 KB
/
mcsoda-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
from distutils.core import setup
import subprocess
from setuptools import find_packages
def get_version():
return "1.0.0"
setup(
name="couchbase-mcsoda",
version=get_version(),
description="mcsoda - high performance json/binary load generator",
author="Couchbase Inc",
author_email="[email protected]",
packages=["lib", "pytests/performance"],
url="http://couchbase.org/",
download_url="http://.../couchbase-mcsoda.tar.gz",
keywords=["encoding", "i18n", "xml"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
# entry_points={
# 'console_scripts': ['mcsoda = pytests.performance:main']
# },
long_description=open('README').read(),
)