-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
29 lines (27 loc) · 878 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
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import django_mathjax
setup(
name = 'django-mathjax',
version = "0.0.8",
description = "MathJax easy integration with django",
long_description = "",
keywords = 'django, mathjax',
author = 'Jesús Espino García',
author_email = '[email protected]',
url = 'https://github.com/kaleidos/django-mathjax',
license = 'BSD',
include_package_data = True,
packages = find_packages(),
classifiers = [
"Programming Language :: Python",
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)