-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (39 loc) · 1.27 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os, sys
import pkg_resources
import norikraclient
long_description = open(os.path.join("README.rst")).read()
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
]
requires = ['msgpack-python', 'requests']
deplinks = []
setup(
name='norikra-client-python',
version=norikraclient.__version__,
description='norikra-client-python library',
long_description=long_description,
classifiers=classifiers,
keywords=['norikra', 'streaming', 'procesing'],
author='WAKAYAMA Shirou',
author_email='shirou.faw at gmail.com',
url='http://github.com/shirou/norikra-client-python',
download_url='http://pypi.python.org/pypi/norikra-client-python',
license='MIT License',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
dependency_links=deplinks,
entry_points={
'console_scripts': [
'norikra-client-py = norikraclient.command:main',
],
}
)