-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aepp"
dynamic = ["version"]
authors = [
{ name="Julien Piccini", email="piccini.julien@gmail.com" },
]
description = "Package to manage AEP API endpoint and some helper functions"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Development Status :: 2 - Pre-Alpha"
]
dependencies = [
"pandas",
"requests",
"pathlib2",
"tenacity",
"deprecation",
"datamodel-code-generator",
"rich",
"matplotlib",
"psycopg2-binary; sys_platform == 'darwin'",
# Install standard psycopg2 on Windows
"psycopg2; sys_platform == 'win32'",
# Optional: Install standard psycopg2 on Linux
"psycopg2-binary; sys_platform == 'linux'",
]
[project.urls]
"Homepage" = "https://github.com/adobe/aepp"
"Changelog" = "https://github.com/adobe/aepp/docs/releases.md"
[project.scripts]
aepp = "aepp.cli.__main__:main"
[tool.setuptools]
packages = ["aepp", "aepp.cli"]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "aepp.__version__.__version__"}
[tool.poetry]
package-mode = true