forked from jaredsuttles/python-fastlz
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 938 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 938 Bytes
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
from distutils.core import setup, Extension
setup(
name='fastlz',
version='0.5.0',
description='Python wrapper for FastLZ, a lightning-fast lossless '
'compression library.',
author='Remus M. Prunescu',
author_email='remusmp@gmail.com',
url='https://github.com/remusmp/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']
)
]
)