-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.31 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
54
55
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "pittapi"
version = "2.0.0"
description = "An API to get data from Pitt and Pitt-related applications."
readme = "README.md"
requires-python = ">=3.13,<3.14"
license = "GPL-2.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "University of Pittsburgh Computer Science Club", email = "pittcsc@gmail.com" },
]
keywords = ["api", "open-data", "university-of-pittsburgh", "pittsburgh", "pitt"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"beautifulsoup4>=4.12",
"requests>=2.32",
]
[project.urls]
Homepage = "https://github.com/Pitt-CSC/PittAPI"
Repository = "https://github.com/Pitt-CSC/PittAPI"
[dependency-groups]
dev = [
"black<=26.3.1",
"flake8>=7.1",
"pre-commit>=4.0",
"pytest>=8.3",
"pytest-cov>=6.0",
"responses>=0.25",
"sphinx>=8.1",
]
[tool.black]
line-length = 127
target-version = ["py313"]
[tool.pytest.ini_options]
markers = [
"live: makes requests to live provider services",
]
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*"]
namespaces = false