-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (26 loc) · 826 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
import os
from distutils.core import setup, Extension
ext = Extension(
'pypuzzle',
sources=[
os.path.join('src', 'pypuzzle.c')
],
libraries=['puzzle', 'gd']
)
setup (
name='pypuzzle',
version='1.3',
description='PyPuzzle -- A Python binding for libpuzzle',
author='Archangel_SDY',
author_email='[email protected]',
url='https://github.com/ArchangelSDY/PyPuzzle',
classifiers=[
'Programming Language :: C',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Graphics',
'Development Status :: 5 - Production/Stable'
],
ext_modules=[ext],
long_description="""This module provides Python bindings for libpuzzle."""
)