-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (36 loc) · 960 Bytes
/
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
[project]
name = "venmo-auto-cashout"
version = "1.0"
description = "A tool to automatically cash out your Venmo balance"
authors = [
{name = "Evan Purkhiser", email = "evanpurkhiser@gmail.com"},
]
dependencies = [
"venmo-api-unofficial @ https://github.com/evanpurkhiser/venmo-api-unofficial/archive/13bf98aa9b12f4b48f3326028bfd12dc5dfbbdce.tar.gz",
"sentry-sdk~=1.5",
"lunchable>=0.8.2",
]
requires-python = ">=3.9"
dynamic = ["classifiers"]
readme = "README.md"
license = {text = "MIT"}
[project.urls]
homepage = "https://github.com/evanpurkhiser/venmo-auto-cashout"
[project.scripts]
venmo-auto-cashout = "venmo_auto_cashout:main"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.black]
line-length=100
target-version=['py39']
[tool.isort]
profile = "black"
line_length = 100
lines_between_sections = 1
skip = "migrations"
[tool.pdm.dev-dependencies]
dev = [
"isort>=5.12.0",
"black>=23.7.0",
]