Skip to content

Commit

Permalink
Switch to PBR
Browse files Browse the repository at this point in the history
  • Loading branch information
akrzos committed Jul 12, 2017
1 parent f557461 commit 285d30c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ __pycache__/
*.so

# Distribution / packaging
AUTHORS
ChangeLog
.Python
env/
build/
Expand Down
31 changes: 28 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
[wheel]
universal = 1

[metadata]
name = collectd-rabbitmq-monitoring
author = Alex Krzos
author-email = [email protected]
summary = Collectd plugin for Rabbitmq.
description-file = README.rst
url = https://github.com/akrzos/collectd-rabbitmq-monitoring
home-page = https://github.com/akrzos/collectd-rabbitmq-monitoring
license = Apache-2
classifier =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Topic :: System :: Monitoring

[global]
setup-hooks = pbr.hooks.setup_hook

[files]
packages = collectd_rabbitmq_monitoring

[wheel]
universal = 1
33 changes: 3 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
from setuptools import setup


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from setuptools import setup

setup(
name='collectd-rabbitmq-monitoring',
version='0.0.3',
description='Collectd plugin for Rabbitmq.',
long_description=read('README.rst'),
url='https://github.com/akrzos/collectd-rabbitmq-monitoring',
author='Alex Krzos',
author_email='[email protected]',
packages=[
'collectd_rabbitmq_monitoring',
],
install_requires=[
'pyrabbit'
],
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License ',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Monitoring',
],
setup_requires=['pbr'],
pbr=True,
)

0 comments on commit 285d30c

Please sign in to comment.