-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 830 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
from setuptools import setup
from pathlib import Path
from texpack import __version__
from texpack.utils import read_text
name = "texpack"
setup(
name=name,
packages=[name],
version=__version__,
license="MIT",
install_requires="",
tests_require="",
author="Mya-Mya",
url="https://github.com/Mya-Mya/texpack",
description="Pack LaTeX Files into Single .tex File",
keywords="LaTeX, tex, academic",
long_description=read_text(Path("./README.md")),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup :: LaTeX",
"Intended Audience :: Science/Research",
"Topic :: Utilities",
"Topic :: Education",
],
)