blob: 7d270ae65bb8c1136e3696bd56e161f81c27a139 [file] [log] [blame]
Brian Silverman84b22232019-01-25 20:29:29 -08001from distutils.core import setup
2
3from pycrc import progname, version, url
4
5setup(name = 'pycrc',
6 version = version,
7 description = 'Free, easy to use Cyclic Redundancy Check source code generator for C/C++',
8 author = 'Thomas Pircher',
9 author_email = 'tehpeh-web@tty1.net',
10 url = url,
11 packages = ['pycrc'],
12 )