-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (27 loc) · 1 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "schengulator"
version = "1.0.0"
description ="A tool to calculate how many days an individual has been in Schengen countries out of a specified 180-day period"
readme = "README.md"
authors = [{name = "Penelope How", email = "pennyruthhow@gmail.com"}]
maintainers = [{name = "Penelope How", email = "pennyruthhow@gmail.com"}]
license = {text = "MIT"}
keywords = ["schengen", "travel", "movement", "europe"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
[project.urls]
"Homepage" = "https://github.com/PennyHow/schengulator"
"Bug Tracker" = "https://github.com/PennyHow/schengulator/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
schengulator = ["*.csv"]