-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.65 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os
VERSION = __import__('foafssl').__version__
def read(*path):
return open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *path)).read()
setup(
name='django-foafssl',
version=VERSION,
description='Django apps for client certificates generation, authentication and WebId provider based on FOAF+SSL mechanism',
long_description=read('docs', 'intro.txt'),
author='Duy',
author_email='[email protected]',
download_url='git://git.rhizomatik.net/django-foafssl',
url='http://rhizomatik.net/myceliafoafssl',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Framework :: Django',
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='foaf, ssl, foaf+ssl, certificate, client certificate, authentication, authorization,django',
include_package_data=True,
zip_safe=False,
# Ignore the tarballs we built our own in a source distribution
exclude_package_data={
'requirements': ['%s/*.tar.gz' % VERSION],
},
# include templates and docs
# setup_requires=[
# 'setuptools_dummy',
# ],
)