-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
42 lines (38 loc) · 1.31 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
#!usr/bin/env python3
"""
safemd – Safety first markdown rendering
Author: Alexander Hultnér, 2018
"""
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="safemd",
author="Alexander Hultnér",
author_email="[email protected]",
maintainer="Alexander Hultnér",
maintainer_email="[email protected]",
url="https://github.com/Hultner/safemd/",
description="A markdown renderer focusing on security first",
long_description=long_description,
long_description_content_type="text/markdown",
version="19.10.1",
py_modules=["safemd"],
packages=find_packages(exclude=["tests"]),
install_requires=["cmarkgfm", "bleach"],
extras_require={
"dev": ["black", "pytest", "twine", "pytest-cov", "codacy-coverage"]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
)