From 7454bfbbc6e9114aa8b6eee2582be19ec4dab885 Mon Sep 17 00:00:00 2001 From: Alex Kerney Date: Thu, 28 Sep 2017 09:36:59 -0400 Subject: [PATCH] Including setup requirements --- .travis.yml | 50 +++++++++++++++++++++++++++----------------------- setup.py | 2 ++ 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0d3703a..5ccb348 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,29 +1,33 @@ -# Config file for automatic testing at travis-ci.org -# This file will be regenerated if you run travis_pypi_setup.py - -language: python -python: - - 3.5 - - 3.4 - - 3.3 - - 2.7 - - 2.6 - -# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors -install: pip install -U tox-travis - -# command to run tests, e.g. python setup.py test -script: tox - -# After you create the Github repo and add it to Travis, run the -# travis_pypi_setup.py script to finish PyPI deployment setup +# This file was autogenerated and will overwrite each time you run travis_pypi_setup.py deploy: provider: pypi distributions: sdist bdist_wheel user: abk password: - secure: PLEASE_REPLACE_ME - on: - tags: true + secure: !!binary | + S3dTdytGTTFGL0ZsalBkbU5oRGZ1bEF1UU9BdVRGeXNPODBKZC82OEFlM1pycDlEakF6S29makQx + VWlRNGRpTjBoL3kzdW9hd3BPcUdoUkVBdC9ST2xnSWxzSVFnNU5QYnRjcjBwdjJpK0hGV1Fvemdq + UmtEWS9uQXd3WHA2ZWd4S3hFenZUblVhUWs4WEhhYjkwOW5xb2xVemNGUVpNdDYwWU5MYVg0SFZq + ZGF3eUNONEZJWnJESUxpc3EyWWpUdFJXYk1ZbmFvYXRRajF3b3NDeGQ1bDVDQ2Z0TklvalNFQVd6 + UkUxbStEcVRMWXBrZnR0U2dXWEJMbE5oVkp1bGJwV2YxU1E2SUVkSmNidy9rU1ZGcFdvMlM3WGdZ + MWxOWkJvT09uZ3ZZbUp5cXcrUGc0Qmx5N3RUT0tUNFkvRkVOQUZ6RDBXQ1M3MFc0dzNlcGJpdVM0 + d2lXbjk4MEJTbDNZK2dvVVZhQWJYa3dFRzR2Y215cU9xVTdHRUV6Qlk2OWh1R2o1MEhPekNISllo + dm9OVWN5ZDUwSnM5WlNYYlh2cXphMzg3NTRsdWhTZWdqVk56bTBkeUo3WVAyTlpFSXBGeFFaRW9I + ZjNOZXpVTkVLVkVQdkM4cEZIRi95V0QzZ01MRnlFU2M5eWIvQXRFNGRacmhnMEdoeHUyS2FGdDZT + NSt5Z0ZNeXQzNFU5QjZTWTlBcWtaeS8reG9idDMwTEYwYlNpTmF0Y0g4QXJzZ3orYkhmRDdXRDhp + NlRpcnc3RlAxbXdxNjl0T2tnY0VybFlCRytKcFdtUUNaWFpManpWRWhLZ25jaHhmSjFUM3V2RUtH + VUVKZUtZYUZtSUFCYlFwenp4UWZDNkRtbzRiM3BFNzNhSUhoVDNsOFRvZHBreHYrNWRXNDh5OVk9 + true: + python: 3.5 repo: abkfenris/email_to - python: 2.7 + tags: true +install: pip install -U tox-travis +language: python +python: +- 3.6 +- 3.5 +- 3.4 +- 3.3 +- 2.7 +- 2.6 +script: tox diff --git a/setup.py b/setup.py index 6aeb3d4..44b21ed 100755 --- a/setup.py +++ b/setup.py @@ -12,6 +12,8 @@ history = history_file.read() requirements = [ + 'markdown', + 'premailer' # TODO: put package requirements here ]