-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 1011 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='python-foafcert',
version='0.1',
description='Python functions for generate a X509 client certificate for XMPP or HTTP FOAF+SSL authentication (including WebId and XMPP id at SubjectAltName).',
author='duy',
author_email='[email protected]',
url='https://rhizomatik.net/myceliafoafssl/wiki/XmppFoafSSL',
download_url='git://git.rhizomatik.net/python-foafcert',
packages=find_packages(),
include_package_data=True,
keywords = 'python foaf ssl certificate X509 PKCS12',
license = 'GPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python'
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)