-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.74 KB
/
pyproject.toml
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
54
55
56
57
58
59
60
[project]
name = "dart-tools"
version = "0.6.16"
description = "The Dart CLI and Python Library"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["dart", "cli", "projectmanagement", "taskmanagement"]
authors = [
{ name="Dart", email="[email protected]" }
]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
"Topic :: Office/Business :: Groupware",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"attrs",
"dateparser",
"httpx",
"pick",
"platformdirs",
"requests"
]
[project.urls]
"Homepage" = "https://www.itsdart.com/?nr=1"
"Web App" = "https://app.itsdart.com/"
"Help Center" = "https://help.itsdart.com/"
"Bugs and Features" = "https://github.com/its-dart/dart-tools/issues"
"Library Source" = "https://github.com/its-dart/dart-tools/"
[project.scripts]
dart = "dart:cli"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["dart", "dart.generated*"]