-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.88 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
[build-system]
requires = ["setuptools>=61.2", "setuptools-scm[toml]>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "synerty-peek"
version = "0.0.0"
authors = [{name = "Synerty", email = "contact@synerty.com"}]
description = "Peek Platform - Meta Package to install all services"
keywords = ["Peek", "Python", "Platform", "synerty"]
classifiers = ["Programming Language :: Python :: 3.5"]
dependencies = [
"peek-admin-doc==0.0.*,>=0.0.0",
"peek-admin-app==0.0.*,>=0.0.0",
"peek-agent-service==0.0.*,>=0.0.0",
"peek-core-device==0.0.*,>=0.0.0",
"peek-core-docdb==0.0.*,>=0.0.0",
"peek-core-email==0.0.*,>=0.0.0",
"peek-core-search==0.0.*,>=0.0.0",
"peek-core-user==0.0.*,>=0.0.0",
"peek-core-screen==0.0.*,>=0.0.0",
"peek-field-doc==0.0.*,>=0.0.0",
"peek-field-app==0.0.*,>=0.0.0",
"peek-field-service==0.0.*,>=0.0.0",
"peek-logic-service==0.0.*,>=0.0.0",
"peek-office-doc==0.0.*,>=0.0.0",
"peek-office-app==0.0.*,>=0.0.0",
"peek-office-service==0.0.*,>=0.0.0",
"peek-platform==0.0.*,>=0.0.0",
"peek-plugin-base==0.0.*,>=0.0.0",
"peek-storage-service==0.0.*,>=0.0.0",
"peek-worker-service==0.0.*,>=0.0.0",
"peek-abstract-chunked-index==0.0.*,>=0.0.0",
"peek-abstract-chunked-data-loader==0.0.*,>=0.0.0",
"sphinx",
"sphinx-rtd-theme",
"sphinx-autobuild",
"pytmpdir>=1.0.2",
"py-spy",
]
[project.urls]
Homepage = "https://gitlab.synerty.com/peek/community/synerty-peek"
#https://stackoverflow.com/a/75636144
# exclude/include in python packages
# use from ... import ... for package paths
[tool.setuptools.packages.find]
where = ["."]
namespaces = false
exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]
# includes for data files - files outside of python packages
[tool.setuptools.package-data]
# exludes for data files - files outside of python packages
[tool.setuptools.exclude-package-data]