-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 920 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 920 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.6"
name = "greip"
version = "1.0.1"
description = "Python wrapper for Greip API"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Greip", email = "info@greip.io" }
]
keywords = ["geolocation", "geoip", "fraud-prevention", "profanity-detection", "fraud-detection", "asn-lookup", "bin-lookup"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
]
dependencies = [
"requests",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[project.urls]
Homepage = "https://greip.io"
Documentation = "https://docs.greip.io"
Repository = "https://github.com/Greipio/python"
Issues = "https://github.com/Greipio/python/issues"