#!/usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
# Get the title and description from README
import re
#readme = open('README').read()
#title, intro = re.findall(r'^\s*([^\n]+)\s+(.*)$', readme, re.DOTALL)[0]
setup(name = "python-certtool",
version = "0.1svn",
author = "Wilson Pinto Júnior (N3RD3X)",
author_email = "n3rd3x@guake-terminal.org",
#url = "http://ag-projects.com/",
#download_url = "http://cheeseshop.python.org/pypi/python-gnutls/%s" % __version__,
#description = title,
#long_description = intro,
license = "LGPL",
platforms = ["Platform Independent"],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
#packages = ['gnutls', 'gnutls.interfaces', 'gnutls.interfaces.twisted', 'gnutls.library'],
ext_modules = [Extension(name='certtool',
sources=['src/template.c',
'src/privkey.c',
'src/self-signed.c',
'src/certtool.c'],
include_dirs=[],
library_dirs=[],
libraries=['gcrypt', 'gnutls', 'gnutls-extra'])]
)