-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 2.21 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
[build-system]
requires = ["setuptools >= 68.2.2", "setuptools_scm[toml] >= 8.0.4", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "centralnicreseller.apiconnector"
version = "5.0.1"
description = """
centralnicreseller.apiconnector is an API connector library for the insanely fast CentralNic Reseller (fka. RRPProxy) Backend API.
With this connector, you can easily resell over 1,100 TLDs, including many rare ccTLDs and hundreds of popular domain extensions. The CentralNic Reseller API and WHMCS plug-in solutions provide a fully automated real-time system and white-labeled reselling options, allowing you to reach your reselling goals in no time.
Trusted by resellers worldwide, CentralNic Reseller (formerly RRPproxy) is your one-stop solution for reselling domains and lucrative related products, such as domain security, domain aftermarket and auction sales, SSL certificates, and more. All services are resalable, and we offer numerous additional features to simplify your reselling business.
In October 2022, we proudly updated our RRPproxy brand to CentralNic Reseller. With a legacy of over 20 years as RRPproxy, we're still the same team, technology, and leaders in the domain reselling industry - simply with an updated name and look!
"""
readme = "README.md"
authors = [
{name = "Kai Schwarz", email = "kai.schwarz@centralnic.com"},
{name = "Asif Nawaz", email = "asif.nawaz@centralnic.com"}
]
maintainers = [
{name = "Kai Schwarz", email = "kai.schwarz@centralnic.com"},
{name = "Asif Nawaz", email = "asif.nawaz@centralnic.com"}
]
license = {file = "LICENSE"}
urls = {homepage = "https://github.com/centralnicgroup-opensource/rtldev-middleware-python-sdk/"}
dependencies = [
"docutils>=0,<1",
"pdoc3>=0.11.5",
"pytest-cov>=2,<8",
"twine>=4,<7",
"black>=23,<27",
"idna>=3"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["centralnicreseller.*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
addopts = "--strict --cov-config=.coveragerc --cov=centralnicreseller --cov-report html --cache-clear -v"
testpaths = ["tests/"]