-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.13 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
from setuptools import setup
from codecs import open
from os import path
"""
Refer to https://packaging.python.org/tutorials/packaging-projects/ for instructions on how to
push new versions of this module to PyPI. Use the following command to push new versions of the module:
python3 setup.py sdist bdist_wheel
twine upload dist/*
Make sure you update the MANIFEST.in file if you change the name of the JAR file so its included in the
module when submitted
"""
# Get the long description from the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'jmxquery',
packages = ['jmxquery'],
version = '0.6.0',
description = 'A JMX Interface for Python to Query runtime metrics in a JVM',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'David Gildeh',
author_email = 'david.gildeh@outlyer.com',
url = 'https://github.com/dgildeh/jmxquery',
keywords = ['java', 'jmx', 'metrics', 'monitoring'],
classifiers = [],
include_package_data=True,
zip_safe = False
)