-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
29 lines (29 loc) · 1.09 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
from distutils.core import setup
setup(name='sagetex',
description='Embed Sage code and plots into LaTeX',
long_description="""The SageTeX package allows you to embed code,
results of computations, and plots from the Sage mathematics
software suite (http://sagemath.org) into LaTeX documents.""",
version='3.6.1',
author='Dan Drake',
author_email='[email protected]',
maintainer='SageMath developers',
maintainer_email='[email protected]',
url='https://github.com/sagemath/sagetex',
license='GPLv2+',
py_modules=['sagetex', 'sagetexparse'],
scripts=['sagetex-run', 'sagetex-extract', 'sagetex-makestatic', 'sagetex-remote'],
install_requires=['pyparsing'],
data_files = [('share/texmf/tex/latex/sagetex',
['example.tex',
'CONTRIBUTORS',
'scripts.dtx',
'remote-sagetex.dtx',
'py-and-sty.dtx',
'sagetex.dtx',
'sagetex.ins',
'sagetex.sty']),
('share/doc/sagetex', [
'example.tex',
'sagetex.pdf',
'example.pdf'])])