forked from samuel/python-munin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 681 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# python3 setup.py install
from distutils.core import setup
from munin import __version__ as version
setup(
name = 'munin',
version = version,
description = 'Framework for building Munin plugins',
author = 'Samuel Stauffer',
author_email = 'samuel@descolada.com',
url = 'http://github.com/samuel/python-munin/tree/master',
packages = ['munin'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)