forked from trac-hacks/trac-mathjax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 905 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
30
31
32
33
34
35
36
#!/usr/bin/env python
#
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011-2024 Mitar <[email protected]>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
from setuptools import setup
VERSION = '0.1.7'
PACKAGE = 'mathjax'
setup(
name='TracMathJax',
version=VERSION,
description="Renders mathematical equations using MathJax library.",
author='Mitar',
author_email='[email protected]',
url='https://trac-hacks.org/wiki/TracMathJaxPlugin',
keywords='trac plugin',
license="AGPLv3",
classifiers=['Framework :: Trac'],
packages=[PACKAGE],
include_package_data=True,
package_data={
PACKAGE: ['htdocs/*.js'],
},
install_requires=[],
zip_safe=False,
entry_points={
'trac.plugins': '%s = %s.api' % (PACKAGE, PACKAGE),
},
)