-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (28 loc) · 901 Bytes
/
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
from distutils.core import setup, Extension
setup(
name='fastlz',
version='0.0.2',
description='Python wrapper for FastLZ, a lightning-fast lossless '
'compression library.',
author='Jared Suttles',
url='https://github.com/jaredsuttles/python-fastlz',
license='BSD License',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Archiving :: Compression',
'Topic :: Utilities'
],
ext_modules = [
Extension(
'fastlz',
sources=['fastlz.c', 'fastlz/fastlz.c'],
include_dirs=['fastlz']
)
]
)