forked from andreax79/python-cstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.03 KB
/
setup.py
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
from setuptools import setup, find_packages
import sys, os
version = '1.0'
def readme():
try:
f = open('README.md')
return f.read()
finally:
f.close()
setup(name='cstruct',
version=version,
description="C-style structs for Python",
long_description="""\
Convert C struct definitions into Python classes with methods for serializing/deserializing.""",
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='struct',
author='Andrea Bonomi',
author_email='[email protected]',
url='http://github.com/andreax79/python-cstruct',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)