forked from ebroecker/canmatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added all needed meta info
- Loading branch information
Showing
1 changed file
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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']} | ||
) | ||
|