-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (32 loc) · 1.29 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django_template_blocks_auto_doc',
version='0.1',
description='Generates hirarquical django base templates documentation',
author='Felipe Ramos Ferreira',
author_email='[email protected]',
maintainer='Felipe Ramos Ferreira',
maintainer_email='[email protected]',
url='https://github.com/perenecabuto/django-template-blocks-auto-doc',
scripts=['bin/django_tmpl_doc.py'],
include_package_data=True,
install_requires=['lxml==3.1.1', 'Pygments==1.6'],
zip_safe=False,
keywords='django, template, documentation',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)