This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.42 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
"""Setuptools setup script for Next-action."""
from setuptools import setup, find_packages
import next_action
setup(
name=next_action.__title__,
version=next_action.__version__,
description="Command-line application to show the next action to work on from a todo.txt file",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Frank Niessink",
author_email="frank@niessink.com",
url="https://github.com/fniessink/next-action",
license="Apache License, Version 2.0",
python_requires=">=3.6",
install_requires=["python-dateutil", "Cerberus", "PyYAML", "Pygments"],
packages=find_packages(),
entry_points={
"console_scripts": [
"next-action=next_action:next_action",
],
},
zip_safe=True,
test_suite="tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Scheduling"],
keywords=["todo.txt", "task management", "todolist"])