forked from rscada/python-mbus
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (29 loc) · 833 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (29 loc) · 833 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
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
"""mbus: Python bindings to the libmbus library from rSCADA.
mbus offers binding to the libmbus C library.
"""
DOCLINES = __doc__.split('\n')
CLASSIFIERS = """\
Programming Language :: Python
Topic :: Engineering
Operating System :: POSIX
Operating System :: Unix
"""
from distutils.core import setup
MAJOR = 0
MINOR = 0
MICRO = 1
setup(
name = "mbus",
version = "%d.%d.%d" % (MAJOR, MINOR, MICRO),
packages = ['mbus'],
scripts = ['examples/mbus-test-1.py'],
author = "Robert Johansson",
author_email = "rob@raditex.nu",
license = "BSD",
description = DOCLINES[0],
long_description = "\n".join(DOCLINES[2:]),
keywords = "M-Bus library for python",
url = "http://www.rscada.se",
platforms = ["Linux", "Unix"],
)