-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.49 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
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name="appendorgheading",
version="2020.06.02.1",
description="Append a new Org mode heading to an existing Org mode file",
author="Karl Voit",
author_email="tools@Karl-Voit.at",
url="https://github.com/novoid/appendorgheading",
download_url="https://github.com/novoid/appendorgheading/zipball/master",
keywords=["org mode", "orgmode", "CLI", "logging", "shell"],
packages=find_packages(), # Required
package_data={},
install_requires=["orgformat"],
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
entry_points={ # Optional
'console_scripts': [
'appendorgheading=appendorgheading:main'
],
},
long_description="""This tool appends Org mode formatted headings to existing Org mode files.
The author is using this to log events to some kind of 'errors.org' which is part
of his Org mode agenda.
Command line parameters override configuration file entries.
- Hosted and documented on github: https://github.com/novoid/appendorgheading
"""
)