-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
44 lines (36 loc) · 1.37 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
import os
import io
from setuptools import setup, find_packages
cwd = os.path.abspath(os.path.dirname('__file__'))
with io.open(os.path.join(cwd, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='jolokia',
version='0.4.0',
description='A Python Jolokia client',
long_description=long_description,
url='https://github.com/wbrefvem/python-jolokia',
author='Will Refvem',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=['tests', 'tests.*']),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='jolokia http jmx',
install_requires=['requests']
)