-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
31 lines (28 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
[build-system]
requires = ["setuptools>=42.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "faker-geoscience"
dynamic = ["readme"]
version = "0.1.0"
description = "Faker addon with providers for everything Earth!"
keywords = ["faker", "geoscience", "data", "generator", "earth"]
urls = {homepage = "https://github.com/tplessas/faker-geoscience"}
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
license = {text = "AGPL-3.0 license"}
authors = [{name = "tplessas", emali = "[email protected]"}, {name = "e-panourgia"}]
dependencies = [
"faker"
]
requires-python = ">=3.6"
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
exclude = ["tests"]