forked from pimutils/todoman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (51 loc) · 1.6 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
52
53
#!/usr/bin/env python3
from setuptools import setup
with open("README.rst") as r:
long_description = r.read()
with open("requirements-dev.txt") as r:
tests_require = r.readlines()
with open("requirements-docs.txt") as r:
docs = r.readlines()
setup(
name="todoman",
description="A simple icalendar-based todo manager.",
author="Hugo Osvaldo Barrera",
author_email="[email protected]",
url="https://github.com/pimutils/todoman",
license="ISC",
packages=["todoman"],
include_package_data=True,
entry_points={"console_scripts": ["todo = todoman.cli:cli"]},
install_requires=[
"atomicwrites",
"click>=7.1,<9.0",
"click-log>=0.2.1",
"humanize",
"icalendar>=4.0.3",
"parsedatetime",
"python-dateutil",
"pyxdg",
"urwid",
],
long_description=long_description,
setup_requires=["setuptools_scm"],
tests_require=tests_require,
extras_require={
"docs": docs,
"repl": ["click-repl>=0.1.6"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Office/Business :: Scheduling",
"Topic :: Utilities",
],
)