-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 959 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 959 Bytes
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
#!/usr/bin/env python
'''Based on an idea of stackexchange user A Feldman
https://tex.stackexchange.com/questions/173317/is-there-a-latex-wrapper-for-use-in-google-docs'''
from setuptools import setup, find_packages
import os
def find_scripts():
scripts = ['bin/glatex']
return scripts
setup(
name='glatex',
version='0.45',
install_requires=[],
packages=find_packages(),
include_package_data=True,
scripts=find_scripts(),
author='Michael Reimann',
author_email='michael.reimann@epfl.ch',
description='Compile latex code contained in google docs',
license='Restricted',
keywords=('latex',
'GDocs'),
url='https://gitlab.com/Reimitch/glatex',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: Proprietary',
'Operating System :: POSIX',
'Topic :: Utilities',
],
)