-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.9 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "splitapiclient"
version = "3.5.9"
license = "Apache-2.0"
description = "This Python Library provides full support for Split REST Admin API, allow creating, deleting and editing Environments, Splits, Split Definitions, Segments, Segment Keys, Users, Groups, API Keys, Change Requests, Attributes and Identities"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
authors = [
{name = "Patricio Echague", email = "patricio.echague@harness.io"},
{name = "Sebastian Arrubia", email = "sebastian@split.io"},
{name = "Martin Redolatti", email = "martin.redolatti@harness.io"},
{name = "Bilal Al-Shawany", email = "bilal.al-shahwany@harness.io"},
]
maintainers = [
{name = "Josh Klein", email = "joshua.klein@harness.io"}
]
dependencies = [
"argparse >= 1.1",
"requests >= 2.14.2",
"six >= 1.10.0",
]
[project.optional-dependencies]
test = [
"pytest >= 6.2.4",
"pytest-mock >= 1.6.0",
"mock >= 2.0.0",
]
dev = [
"pytest >= 6.2.4",
"pytest-mock >= 1.6.0",
"mock >= 2.0.0",
"build >= 0.7.0",
"twine >= 3.4.0",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/splitio/python-api"
"Bug Tracker" = "https://github.com/splitio/python-api/issues"
Documentation = "https://developer.harness.io/docs/feature-management-experimentation/api/wrappers/python-admin-api/"
[tool.aliases]
test = "pytest"
[tool.pytest.ini_options]
addopts = "--verbose"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["splitapiclient*"]
exclude = ["splitapiclient.tests*"]