-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (42 loc) · 1.29 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cjapy"
authors = [
{name = "Julien Piccini", email = "piccini.julien@gmail.com"},
]
description = "Adobe Customer Journey Analytics (CJA) wrapper"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["adobe", "analytics", "API", "python"]
license = {text = "Apache License 2.0"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta"
]
dependencies = [
"pandas",
"pathlib2",
"pathlib",
"requests",
"PyJWT",
"PyJWT[crypto]",
"pytest",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/pitchmuc/cjapy"
changelog = "https://github.com/pitchmuc/cjapy/blob/master/docs/releases.md"
[tool.setuptools]
include-package-data = true
[project.optional-dependencies]
dynamic = ["version"]