-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
51 lines (46 loc) · 1.39 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
47
48
49
50
51
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "aanalytics2"
authors = [
{name = "Julien Piccini", email = "piccini.julien@gmail.com"},
]
description = "Adobe Analytics API 2.0 and 1.4 python 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>=0.25.3',
'pathlib2',
'pathlib',
'requests',
'PyJWT[crypto]',
'PyJWT',
"dicttoxml",
"pytest",
"openpyxl>2.6.0"
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/pitchmuc/adobe-analytics-api-2.0"
changelog = "https://github.com/pitchmuc/adobe-analytics-api-2.0/blob/master/docs/releases.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
mypkg = ["*.pickle"]
[project.optional-dependencies]
dynamic = ["version"]