Skip to content

Park config #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions park.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[DEFAULT]
version: 0.0.1
author: Amazon Web Services
author_email: [email protected]
url: https://github.com/awslabs/aws-dynamodb-encryption-python
description: Did you mean to install dynamodb-encryption-sdk?
long_description:
This package has been parked by {author} to protect you against packages
adopting names that might be common mistakes when looking for ours. You probably
wanted to install dynamodb-encryption-sdk. For more information, see {url}.
description_keys:
author
url

[names]
dynamodb-encryption:
dynamodb-encyrption:
dynamodb-encrpytion:
dynamodb-encrytpion:
dynamodbencryptionsdk:
dynamodbencyrptionsdk:
dynamodbencrpytionsdk:
dynamodbencrytpionsdk:
17 changes: 17 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ envlist =
# linters :: Runs all linters over all source code.
# linters-tests :: Runs all linters over all tests.

# Operational helper environments:
# docs :: Builds Sphinx documentation.
# serve-docs :: Starts local webserver to serve built documentation.
# park :: Builds name-parking packages using pypi-parker.
# build :: Builds source and wheel dist files.
# test-release :: Builds dist files and uploads to testpypi pypirc profile.
# release :: Builds dist files and uploads to pypi pypirc profile.

[testenv:base-command]
commands = pytest --basetemp={envtmpdir} -l --cov dynamodb_encryption_sdk {posargs}

Expand Down Expand Up @@ -231,6 +239,15 @@ deps =
commands =
python -m http.server {posargs}

# Release tooling
[testenv:park]
basepython = python3.6
skip_install = true
deps =
pypi-parker
setuptools
commands = python setup.py park

# Release tooling
[testenv:build]
basepython = python3
Expand Down