From 7b89b1880ad09b753c8366dad114b79674d00597 Mon Sep 17 00:00:00 2001 From: Alex Maestas Date: Mon, 9 Jul 2018 14:49:25 -0700 Subject: [PATCH] build one package with two extensions --- setup.py | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/setup.py b/setup.py index 5277e0d..7c29485 100644 --- a/setup.py +++ b/setup.py @@ -41,32 +41,7 @@ "src/getdate.c" ], #extra_compile_args=["-O0"] - ) - ], - classifiers=[ - "Development Status :: 4 - Beta", - "Environment :: Console", - "Intended Audience :: System Administrators", - "Intended Audience :: Developers", - "Operating System :: POSIX", - "Programming Language :: C", - "Programming Language :: Python", - "Programming Language :: YACC", - "License :: OSI Approved :: MIT License", - "Topic :: Software Development :: Libraries :: Python Modules", - "Topic :: System :: Systems Administration :: Authentication/Directory", - ] - ) - -setup(name='python-kadmin-local', - version='0.1.1', - description='Python module for kerberos admin (kadm5) via root local interface', - url='https://github.com/russjancewicz/python-kadmin', - download_url='https://github.com/russjancewicz/python-kadmin/tarball/v0.1.1', - author='Russell Jancewicz', - author_email='russell.jancewicz@gmail.com', - license='MIT', - ext_modules=[ + ), Extension( "kadmin_local", libraries=["krb5", "kadm5srv", "kdb5"], @@ -84,6 +59,7 @@ ], define_macros=[('KADMIN_LOCAL', '')] ) + ], classifiers=[ "Development Status :: 4 - Beta", @@ -99,4 +75,3 @@ "Topic :: System :: Systems Administration :: Authentication/Directory", ] ) -