This repository has been archived by the owner on Dec 30, 2021. It is now read-only.
generated from Mara-Li/yet-another-free-publish-alternative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.4 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
43
from setuptools import setup, find_packages
version = "3.0.3"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="yafpa",
python_requires=">=3.7",
version=version,
description="A script to share your obsidian vault (in partial way)",
author="Mara-Li",
author_email="mara-li@icloud.com",
packages=find_packages(),
install_requires=[
"python-dotenv",
"gitpython",
"python-frontmatter",
"pyYAML",
"pyperclip",
"unidecode",
],
license="AGPL",
keywords="obsidian, obsidian.md, free publish, publish, jekyll, blog",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Natural Language :: French",
"Topic :: Text Processing :: Markup :: Markdown",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Mara-Li/YAFPA-python",
entry_points={
"console_scripts": ["yafpa=YAFPA.__main__:main"],
},
)