-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 962 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
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
VERSION = open('VERSION', 'r').read().strip()
setup(
name='pylzmat',
version=VERSION,
description='lzmat bindings.',
author='Marcos Agüero',
author_email='[email protected]',
url='https://github.com/wiredrat/pylzmat',
long_description='''
Bindings for lzmat library (http://www.matcode.com/lzmat.htm).
''',
license="GNU GPLv2",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
py_modules=['pylzmat'],
setup_requires=["cffi>1.0.0"],
cffi_modules=["pylzmat_build.py:ffibuilder"],
install_requires=["cffi>1.0.0"],
test_suite="test"
)