-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 825 Bytes
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
[project]
name = "preston"
version = "4.12.1"
description = "EVE ESI API access tool"
authors = [
{ name = "Celeo", email = "mattboulanger@fastmail.com" }
]
license = "MIT"
readme = "README.md"
keywords = [
"eve online",
"eve",
"esi",
]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
requires-python = "<4.0,>=3.11"
dependencies = [
"cryptography>=44.0.3",
"pyjwt>=2.9.0",
"requests==2.33.0",
]
[project.urls]
homepage = "https://github.com/Celeo/Preston"
repository = "https://github.com/Celeo/Preston"
[dependency-groups]
dev = [
"pytest>=7.4.3,<10.0.0",
"pytest-cov<5.0.0,>=4.1.0",
"ruff<1.0.0,>=0.1.5",
]