-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merging in Patrick's updates from master, as well as storage updates.
- Loading branch information
Showing
11 changed files
with
136 additions
and
1,940 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,17 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python: [3.6, 3.8, 3.9] | ||
extras: ["test", "test,queable,sentry"] | ||
python: [3.8, 3.9, "3.10", 3.12] | ||
extras: ["test", "test,queuable,sentry"] | ||
steps: | ||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Test | ||
working-directory: ./client | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
"versioningit", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "datalake" | ||
authors = [ | ||
{name = "Brian Cavagnolo", email = "[email protected]"}, | ||
] | ||
description = "datalake: a metadata-aware archive" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
'boto3>=1.9.68', | ||
'memoized_property>=1.0.1', | ||
'pyblake2>=0.9.3; python_version<"3.6"', | ||
'click>=4.1', | ||
'python-dotenv>=0.1.3', | ||
'requests>=2.5', | ||
'six>=1.10.0', | ||
'python-dateutil>=2.4.2', | ||
'pytz>=2015.4', | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
'pytest<8.0.0', | ||
'pytest-cov>=2.5.1,<4', | ||
'moto[s3]>4,<5', | ||
'twine<4.0.0', | ||
'pip>=20.0.0,<22.0.0', | ||
'wheel<0.38.0', | ||
'flake8>=2.5.0,<4.1', | ||
'responses<0.22.0', | ||
] | ||
# the queuable feature allows users to offload their datalake pushes | ||
# to a separate uploader process. | ||
queuable = [ | ||
'inotify_simple>=1.3.5', | ||
] | ||
sentry = [ | ||
'raven>=5.0.0', | ||
] | ||
|
||
[project.scripts] | ||
datalake = "datalake.scripts.cli:cli" | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["test"] | ||
|
||
[tool.versioningit] | ||
default-version = "0.0.0-dev" | ||
|
||
[tool.versioningit.format] | ||
distance = "{base_version}+{distance}.{vcs}{rev}" | ||
# Example formatted version: 1.2.3+42.ge174a1f | ||
|
||
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty" | ||
# Example formatted version: 1.2.3+42.ge174a1f.dirty | ||
|
||
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty" | ||
# Example formatted version: 1.2.3+42.ge174a1f.dirty | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov=planet.mc_client --cov-config .coveragerc" | ||
markers = [ | ||
"slow: marks tests as slow (deselect with '-m \"not slow\"')" | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.