-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (70 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "asana2calendar"
dynamic = ["version"]
description = "An application for two-way sync between asana projects and caldav calendars."
readme = "README.md"
license = { text = "GNU General Public License v3" }
requires-python = ">=3.7"
authors = [{ name = "Dylan Barker", email = "dylan@dylantjb.com" }]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Communications",
"Topic :: Office/Business :: Scheduling"
]
dependencies = [
"asana~=3.1.1",
"caldav~=1.2.0",
"keyring~=23.13.1",
"python-socketio~=5.7.2",
"websocket-client~=1.5.1",
]
[project.optional-dependencies]
dev = [
"black>=21.7.0",
"isort>=5.12.0",
"pylint>=2.16.3",
"pyright>=1.1.298"
]
test = [
"coverage[toml]",
"pytest>=6.2.4",
"pytest-cov>=2.10.1",
"pytest-mock>=3.10.0",
]
[project.urls]
Documentation = "https://github.com/dylantjb/asana2calendar"
Issues = "https://github.com/dylantjb/asana2calendar/issues"
Source = "https://github.com/dylantjb/asana2calendar"
[project.scripts]
asana2calendar = "asana2calendar.__main__:main"
[tool.pylint.'MESSAGES CONTROL']
disable = "W0621, R0903"
[tool.hatch.version]
path = "asana2calendar/__about__.py"
[tool.hatch.build]
include = [
"asana2calendar/**/*.py",
"/tests",
]
[tool.hatch.build.targets.sdist]
include = [
"/README.md",
"/CONTRIBUTING.md",
"/asana2calendar",
"/tests",
]