-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 873 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 873 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
#!/usr/bin/env python
# -*- coding: latin1 -*-
from setuptools import setup, find_packages
setup(name="pylatexparse",
version="2019.2",
description="A parser and document tree for LaTeX documents",
long_description=open("README.rst", "r").read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
python_requires='~=3.6',
author="Andreas Kloeckner",
url="https://github.com/inducer/pylatexparse",
author_email="inform@tiker.net",
license="MIT",
packages=find_packages())