Skip to content

Commit

Permalink
changed setup.py for release 0.4
Browse files Browse the repository at this point in the history
added all needed meta info
  • Loading branch information
ebroecker committed Jun 5, 2016
1 parent d6d1216 commit bb7a3ca
Showing 1 changed file with 62 additions and 1 deletion.
63 changes: 62 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,70 @@
"""Support and convert several CAN (Controller Area Network) database formats .arxml .dbc .dbf .kcd ...
Canmatrix implements a "Python Can Matrix Object" which describes the can-communication
and the needed objects (Boardunits, Frames, Signals, Values, ...) Canmatrix also includes
two Tools (canconvert and cancompare) for converting and comparing CAN databases.
There are also some extract and merge options for dealing with can databases.
supported file formats for import:
.dbc candb / Vector
.dbf Busmaster (open source!)
.kcd kayak (open source!)
.arxml autosar system description
.yaml dump of the python object
.xls(x) excel xls-import, works with .xls-file generated by this lib
.sym peak pcan can description
supported file formats for export:
.dbc
.dbf
.kcd
.xls(x)
.json Canard (open source!)
.arxml (very basic implementation)
.yaml (dump of the python object)
.sym
"""

classifiers = """\
Development Status :: 4 - Beta
Environment :: Console
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
"""

from setuptools import setup, find_packages

doclines = __doc__.split("\n")

setup(
name = "canmatrix",
version = "0.3",
version = "0.4",
maintainer = "Eduard Broecker",
maintainer_email = "eduard at gmx dot de",
url = "http://github.com/ebroecker/canmatrix",
classifiers = filter(None, classifiers.split("\n")),
description = doclines[0],
keywords = "CAN dbc arxml kcd dbf sym",
long_description = "\n".join(doclines[2:]),
license = "BSD",
platforms = ["any"],

packages = find_packages(),
entry_points={'console_scripts': ['cancompare = canmatrix.compare:main',
'canconvert = canmatrix.convert:main']}
)

0 comments on commit bb7a3ca

Please sign in to comment.