-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·42 lines (37 loc) · 1016 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
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def readfile(file):
with open(file, "r") as f:
return f.read()
setup(
name="madblog",
version="0.2.30",
author="Fabio Manganiello",
author_email="[email protected]",
description="A minimal platform for Markdown-based blogs",
license="MIT",
python_requires=">= 3.8",
keywords="blog markdown",
url="https://git.platypush.tech/blacklight/madblog",
packages=find_packages(include=["madblog"]),
include_package_data=True,
entry_points={
"console_scripts": [
"madblog=madblog.cli:run",
],
},
long_description=readfile("README.md"),
long_description_content_type="text/markdown",
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
],
install_requires=[
"flask",
"markdown",
"pygments",
"pyyaml",
],
)