-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.1 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
30
31
32
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="pelican-md-math",
version="0.0.0",
author="Laszlo Treszkai",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/treszkai/pelican-md-math",
license="AGPL-3.0",
description="Convert math tags in markdown input for Pelican",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
install_requires=["pelican>=4.5", "Markdown>=3.1.1"],
include_package_data=True, # includes files from MANIFEST.in
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pelican :: Plugins",
"Framework :: Pelican",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python",
],
)