-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
51 lines (47 loc) · 1.5 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
44
45
46
47
48
49
50
51
import setuptools
with open("README.md", "r", encoding="utf8") as f:
LONG_DESCRIPTION = f.read()
PROJECT_URLS = {"Source": "https://github.com/mfarragher/obsidiantools"}
INSTALL_REQUIRES = [
"markdown",
"pymdown-extensions",
"html2text",
"pandas",
"numpy",
"networkx",
"python-frontmatter",
"beautifulsoup4",
"bleach",
"lxml"]
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Office/Business",
"Topic :: Education",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
setuptools.setup(
name="obsidiantools",
version="0.10.0",
author="Mark Farragher",
description="Obsidian Tools - a Python interface for Obsidian.md vaults",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords=["obsidian", "obsidian.md", "knowledge",
"note-taking", "notes",
"knowledge management",
"connected notes"],
url="https://github.com/mfarragher/obsidiantools",
project_urls=PROJECT_URLS,
packages=setuptools.find_packages(exclude=("tests")),
python_requires=">=3.9",
install_requires=INSTALL_REQUIRES,
license="BSD",
classifiers=CLASSIFIERS
)