-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
34 lines (31 loc) · 965 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
[build-system]
requires = [
"setuptools>=65",
]
build-backend = "setuptools.build_meta"
[project]
name = "packagetracker"
version = "0.6.1"
authors = [{ name = "Michael Stella", email = "[email protected]"}]
license = { text = "GPL"}
description = "Track packages."
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
# using this github version because fixes have not been released
'fedex @ git+https://github.com/Mobelux/python-fedex.git',
'requests',
]
[project.urls]
homepage = "http://github.com/alertedsnake/packagetracker"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
addopts = "-v"