forked from Narsil/django-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (31 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup, find_packages
METADATA = dict(
name='django-proteq-docs',
version='1.1',
author='Janneke Janssen',
author_email='[email protected]',
description="""Provides a way to integrate a protected sphinx based
documentation within your django app.""",
long_description=open('README.rst').read(),
url='http://github.com/jjanssen/django-proteq-docs',
download_url='http://github.com/jjanssen/django-proteq-docs',
install_requires=[],
include_package_data=True,
packages=find_packages(),
keywords='django documentation authentification',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public \
License (LGPL)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)
if __name__ == '__main__':
setup(**METADATA)