-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.52 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
33
34
35
36
37
38
39
40
41
42
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pycmarkgfm",
version="1.2.1",
description="Bindings to GitHub's Flavored Markdown (cmark-gfm), with enhanced support for task lists.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zopieux/pycmarkgfm",
author="Alexandre Macabies",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(),
cffi_modules=["pycmarkgfm/build_cmark.py:ffibuilder"],
setup_requires=["cffi>=1.15.0"],
install_requires=["cffi>=1.15.0"],
project_urls={
"Bug Reports": "https://github.com/zopieux/pycmarkgfm/issues",
"Source": "https://github.com/zopieux/pycmarkgfm",
},
zip_safe=False,
include_package_data=True,
)