-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (52 loc) · 1.39 KB
/
setup.py
File metadata and controls
53 lines (52 loc) · 1.39 KB
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
from setuptools import setup, find_packages
setup(
name="caldav-tasks-api",
version="1.8.0",
author="thiswillbeyourgithub",
description="A Python client for CalDAV task servers, with a CLI.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/thiswillbeyourgithub/CaldavTasksAPI/",
keywords=[
"caldav",
"tasks",
"vtodo",
"todo",
"cli",
"api",
"nextcloud",
"calendar",
"task management",
],
packages=find_packages(include=["caldav_tasks_api", "caldav_tasks_api.*"]),
install_requires=[
"caldav>=1.4.0",
"click>=8.1.8",
"urllib3>=2.5.0",
"loguru>=0.7.0",
"platformdirs>=3.0.0",
],
extras_require={
"dev": [
"dotenv>=0.9.9",
"black>=25.1.0",
"twine>=6.1.0",
"build>=1.2.2.post1",
"bumpver>=2024.1130",
"pytest>=8.3.5",
"pre-commit>=4.2.0",
],
},
entry_points={
"console_scripts": [
"caldav-tasks-api=caldav_tasks_api.__main__:cli",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Utilities",
],
python_requires=">=3.8",
)