-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (44 loc) · 1.54 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
#!/usr/bin/python3
# Copyright (c) 2021 David Steele <[email protected]>
#
# SPDX-License-Identifier: GPL-2.0-or-later
# License-Filename: LICENSE
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="todo.txt-gtd",
version="0.2",
packages=["todo_txt_gtd"],
url="https://github.com/davesteele/todo.txt-gtd",
license="GPL 2.0",
author="David Steele",
author_email="[email protected]",
description="Todo.txt support scripts for GTD.",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"gtdcleanup = todo_txt_gtd.tdtcleanup:main",
"project = todo_txt_gtd.tdtproj:main",
"counttodo = todo_txt_gtd.tdtcount:main",
]
},
install_requires=["configargparse", "relatorio"],
# setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: "
"GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Other/Nonlisted Topic",
],
)