21 lines
568 B
Python
21 lines
568 B
Python
from distutils.core import setup, Extension
|
|
|
|
setup(
|
|
name='pantyshot',
|
|
version='0.2.1',
|
|
description='Python extension for Upskirt.',
|
|
author='Frank Smit',
|
|
author_email='frank@61924.nl',
|
|
url='https://github.com/FSX/pantyshot',
|
|
ext_modules=[Extension('pantyshot', [
|
|
'src/pantyshot.c',
|
|
'src/upskirt/array.c',
|
|
'src/upskirt/buffer.c',
|
|
'src/upskirt/markdown.c',
|
|
'src/upskirt/html.c',
|
|
'src/upskirt/html_smartypants.c',
|
|
'src/upskirt/autolink.c',
|
|
'src/upskirt/html_autolink.c'
|
|
])]
|
|
)
|