-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
165 lines (159 loc) · 5.4 KB
/
Copy pathpyproject.toml
File metadata and controls
165 lines (159 loc) · 5.4 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
[build-system]
requires = ["setuptools==80.9.0", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "observatory-platform"
dynamic = ["version"]
description = "The Observatory Platform is an environment for fetching, processing and analysing data to understand how well universities operate as Open Knowledge Institutions."
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
keywords = ["science", "data", "workflows", "academic institutes", "academic-observatory-workflows"]
authors = [{ name = "Curtin University", email = "agent@observatory.academy" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
dependencies = [
"setuptools==80.9.0",
# Airflow
"apache-airflow[slack]==2.11.2",
"apache-airflow-providers-cncf-kubernetes",
"apache-airflow-providers-common-compat",
"apache-airflow-providers-common-io",
"apache-airflow-providers-common-sql",
"apache-airflow-providers-fab",
"apache-airflow-providers-ftp",
"apache-airflow-providers-http",
"apache-airflow-providers-imap",
"apache-airflow-providers-slack",
"apache-airflow-providers-smtp",
"apache-airflow-providers-sqlite",
# Google Cloud
"google-crc32c>=1.1.0,<2",
"google-cloud-bigquery>=3.2,<4",
"google-api-python-client>=2,<3",
"google-cloud-storage>=3,<4",
#"google-auth-oauthlib>=0.4.5,<1",
"google-cloud-compute >=1.16.0,<2.0",
# File manipulation, reading, writing
"Jinja2>=3,<4",
"jsonlines>=2.0.0,<3", # Writing
"json_lines>=0.5.0,<1", # Reading, including jsonl.gz
"pandas>=2,<3",
# HTTP requests and URL cleaning
"requests>=2.25.0,<3",
"aiohttp>=3.7.0,<4",
"curl_cffi==0.15.0",
# SFTP
"paramiko>=3,<4",
# Utils
"natsort>=7.1.1,<8",
"backoff>=2,<3",
"xmltodict",
"tenacity>=8.0.0",
"python-dateutil",
"validators<=0.40.0",
]
[project.optional-dependencies]
tests = [
"liccheck>=0.4.9,<1",
"flake8>=3.8.0,<4",
"coverage>7",
"azure-storage-blob>=12.8.1,<13",
"httpretty>=1.0.0,<2",
"deepdiff>=8,<9",
"responses>=0.23.1,<1",
"boto3>=1.15.0,<2",
"timeout-decorator>=0,<1",
"time-machine>=2.14.0,<3",
# SFTP & FTP
"sftpserver>=0.3,<1",
"pyftpdlib>=1.5.7,<2",
]
[project.urls]
"Homepage" = "https://github.com/The-Academic-Observatory/observatory-platform"
"Bug Tracker" = "https://github.com/The-Academic-Observatory/observatory-platform/issues"
"Documentation" = "https://observatory-platform.readthedocs.io/en/latest/"
"Source" = "https://github.com/The-Academic-Observatory/observatory-platform"
"Repository" = "https://github.com/The-Academic-Observatory/observatory-platform"
[tool.setuptools_scm]
version_file = "observatory_platform/_version.py"
[tool.liccheck]
authorized_licenses = [
# Unencumbered licenses: https://opensource.google/docs/thirdparty/licenses/#unencumbered
"public domain <http://unlicense.org>",
"cc0 1.0 universal (cc0 1.0) public domain dedication",
# Notice licenses: https://opensource.google/docs/thirdparty/licenses/#notice
"artistic",
"apache software license 2.0",
"apache license version 2.0",
"apache license, version 2.0",
"apache license 2.0",
"apache 2.0",
"apache-2.0",
"apache software",
"apache 2",
"apache-2",
"bsd",
"bsd-2-clause",
"bsd-3-clause",
"3-clause bsd",
"new bsd",
"bsd or apache license, version 2.0",
"bsd-2-clause or apache-2.0",
"isc license (iscl)",
"isc",
"mit",
"python software foundation",
"psf-2.0",
"psfl",
"zpl 2.1",
# Reciprocal licenses: https://opensource.google/docs/thirdparty/licenses/#reciprocal
"mozilla public license 1.1 (mpl 1.1)",
"mozilla public license 2.0 (mpl 2.0)",
"mpl-2.0",
# LGPL
"lgpl",
"gnu library or lesser general public license (lgpl)",
"gnu lesser general public license v3 or later (lgplv3+)",
"lgplv3+",
"the unlicense (unlicense)",
"apache-2.0 and mit",
"mit and psf-2.0",
]
unauthorized_licenses = [
# Restricted licenses: https://opensource.google/docs/thirdparty/licenses/#restricted
"gpl v1",
"gpl v2",
"gpl v3",
# Banned licenses: https://opensource.google/docs/thirdparty/licenses/#banned
"agpl",
"affero gpl",
"agpl (affero gpl)",
"sspl"
]
level = "CAUTIOUS"
reporting_txt_file = "liccheck-output.txt" # by default is None
no_deps = false
dependencies = true # to load [project.dependencies]
optional_dependencies = ["tests"] # to load extras from [project.optional-dependencies]
[tool.liccheck.authorized_packages]
# MIT license: https://pypi.org/project/ordereddict/1.1/
ordereddict = "1.1"
# MIT license: https://pypi.org/project/pendulum/1.4.4/
pendulum = ">=3.0.0"
# Python Imaging Library (PIL) License: https://github.com/python-pillow/Pillow/blob/master/LICENSE
Pillow = ">=7.2.0"
# Apache 2.0: https://github.com/googleapis/python-crc32c
google-crc32c = ">=0"