-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 782 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 782 Bytes
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
from setuptools import setup, find_packages
from os import path
ROOT_DIR = path.abspath(path.dirname(__file__))
with open(path.join(ROOT_DIR, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
reqs = f.readlines()
setup(
name="obsidian_tools",
version="0.1",
description="Some tools.",
long_description=long_description,
# url='',
keywords="utilities, python",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
packages=find_packages(),
install_requires=reqs,
author="Felix Jung",
author_email="jung@posteo.de",
entry_points={"console_scripts": ["obsidian-tools = obsidian_tools.cli"]},
)