-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (40 loc) · 1.62 KB
/
setup.py
File metadata and controls
executable file
·44 lines (40 loc) · 1.62 KB
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
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
import bdec
short_description = 'A set of tools for decoding binary files.'
long_description = """\
A set of tools for decoding binary files given a specification written in a
flexible xml based syntax. It supports decoding to xml or python objects, and
can generate quality C decoders.
"""
setup(name='bdec',
version=bdec.__version__,
description=short_description,
long_description=long_description,
author='Henry Ludemann',
author_email='henry@protocollogic.com',
url='http://www.protocollogic.com/',
download_url='http://www.protocollogic.com/files/bdec-%s.tar.gz' % bdec.__version__,
packages=find_packages(exclude=["specs", "specs.*", 'tools', 'tools.*',
'regression', 'regression.*']),
package_data={'bdec': ['templates/c/*']},
entry_points={'console_scripts': [
'bcompile = bdec.tools.compile:main',
'bdecode = bdec.tools.decode:main',
'bencode = bdec.tools.encode:main',
]},
install_requires=['pyparsing', 'nose', 'mako'],
zip_safe=True,
license="GNU LGPL",
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)