forked from matthewg/EzStruct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 1.3 KB
/
setup.py
File metadata and controls
executable file
·37 lines (34 loc) · 1.3 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
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='ezstruct',
version='0.1.0',
description='Expressive syntax for working with binary data formats and network protocols.',
long_description=(read('README.rst') + '\n\n' +
read('doc/HISTORY.rst') + '\n\n' +
read('doc/AUTHORS.rst')),
url='http://github.com/matthewg/EzStruct/',
license='Apache',
author='Matthew Sachs',
author_email='matthewg@zevils.com',
packages=find_packages(exclude=['tests*']),
include_package_data=False,
install_requires=['six'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)