From 51c10a01532238952a9cdfc1ca6b4c44498ea21a Mon Sep 17 00:00:00 2001 From: Kevin Burnett <18027+burnettk@users.noreply.github.com> Date: Tue, 2 Jan 2024 07:12:49 -0800 Subject: [PATCH] Merging deploy app dev into master (#13) * updated available v2 connectors w/ burnettk * install postgresql-client in the docker image w/ burnettk * updated spiffworkflow-proxy so it can find the correct commands w/ burnettk * use h2 in the README w/ burnettk * update connector-http with GetRequestV2 param fix * update connector-http to fix post request v2 --------- Co-authored-by: jasquat Co-authored-by: burnettk --- Dockerfile | 4 ++ README.md | 4 +- poetry.lock | 130 +++++++++++-------------------------------------- pyproject.toml | 2 +- 4 files changed, 35 insertions(+), 105 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf2c313..08d67d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,10 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN useradd _gunicorn --no-create-home --user-group +RUN apt-get update -q \ + && apt-get install -y -q \ + postgresql-client + WORKDIR /app FROM base AS setup diff --git a/README.md b/README.md index 2e9b7c3..30d5e7e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# Run the service +## Run the service poetry run flask --debug run --port=7004 -# You can check to see if it is running by loading +## You can check to see if it is running by loading http://localhost:7004/v1/commands http://localhost:7004/liveness diff --git a/poetry.lock b/poetry.lock index 9969ca1..ed5e408 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,10 +1,9 @@ -# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "alabaster" version = "0.7.12" description = "A configurable sidebar-enabled Sphinx theme" -category = "dev" optional = false python-versions = "*" files = [ @@ -16,7 +15,6 @@ files = [ name = "attrs" version = "22.1.0" description = "Classes Without Boilerplate" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -34,7 +32,6 @@ tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy name = "babel" version = "2.11.0" description = "Internationalization utilities" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -49,7 +46,6 @@ pytz = ">=2015.7" name = "bandit" version = "1.7.4" description = "Security oriented static analyser for python code." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -72,7 +68,6 @@ yaml = ["PyYAML"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -106,7 +101,6 @@ uvloop = ["uvloop (>=0.15.2)"] name = "boto3" version = "1.26.32" description = "The AWS SDK for Python" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -126,7 +120,6 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] name = "botocore" version = "1.29.32" description = "Low-level, data-driven core of boto 3." -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -146,7 +139,6 @@ crt = ["awscrt (==0.15.3)"] name = "cachelib" version = "0.9.0" description = "A collection of cache libraries in the same API interface." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -158,7 +150,6 @@ files = [ name = "certifi" version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -170,7 +161,6 @@ files = [ name = "cfgv" version = "3.3.1" description = "Validate configuration and produce human readable error messages." -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -182,7 +172,6 @@ files = [ name = "charset-normalizer" version = "2.1.1" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -197,7 +186,6 @@ unicode-backport = ["unicodedata2"] name = "click" version = "8.1.3" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -212,7 +200,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -224,7 +211,6 @@ files = [ name = "connector-aws" version = "0.1.0" description = "Connect Service Tasks to AWS web services." -category = "main" optional = false python-versions = "^3.10" files = [] @@ -244,7 +230,6 @@ resolved_reference = "ad386286bcc72eeb000b9b053596dfee40f7c6b5" name = "connector-bamboohr" version = "0.1.0" description = "" -category = "main" optional = false python-versions = "^3.11" files = [] @@ -261,7 +246,6 @@ url = "connectors/connector-bamboohr" name = "connector-github" version = "0.2.0" description = "Make API Requests to github" -category = "main" optional = false python-versions = "^3.9" files = [] @@ -278,9 +262,8 @@ resolved_reference = "5d16c06abc48437abb9ed20afc882804635f8082" [[package]] name = "connector-http" -version = "0.2.0" +version = "1.0.0" description = "Make HTTP Requests available to SpiffWorkflow Service Tasks" -category = "main" optional = false python-versions = "^3.9" files = [] @@ -288,12 +271,32 @@ develop = false [package.dependencies] requests = "^2.28.2" +spiffworkflow-connector-command = {git = "https://github.com/sartography/spiffworkflow-connector-command.git", rev = "main"} [package.source] type = "git" url = "https://github.com/sartography/connector-http.git" reference = "HEAD" -resolved_reference = "c660809302a9c42c4e1562ca8feec1f7c7df1f3f" +resolved_reference = "026de90d01e1127b7944600818aa94dc53850518" + +[[package]] +name = "connector-postgres-v2" +version = "1.0.0" +description = "Make HTTP Requests available to SpiffWorkflow Service Tasks" +optional = false +python-versions = "^3.9" +files = [] +develop = false + +[package.dependencies] +requests = "^2.28.2" +spiffworkflow-connector-command = {git = "https://github.com/sartography/spiffworkflow-connector-command.git", rev = "main"} + +[package.source] +type = "git" +url = "https://github.com/sartography/connector-postgres.git" +reference = "HEAD" +resolved_reference = "dc01e632e73b0bcdb55c38f8683152124f2c108b" [[package]] name = "connector-postgres-v2" @@ -319,7 +322,6 @@ resolved_reference = "851001e70b9bf692addf9306d9342fc333653088" name = "connector-postgresql" version = "0.1.0" description = "" -category = "main" optional = false python-versions = "^3.11" files = [] @@ -334,25 +336,26 @@ url = "connectors/connector-postgresql" [[package]] name = "connector-smtp" -version = "0.1.0" +version = "1.0.0" description = "Make SMTP Requests available to SpiffWorkflow Service Tasks" -category = "main" optional = false python-versions = "^3.9" files = [] develop = false +[package.dependencies] +spiffworkflow-connector-command = {git = "https://github.com/sartography/spiffworkflow-connector-command.git", rev = "main"} + [package.source] type = "git" url = "https://github.com/sartography/connector-smtp.git" reference = "HEAD" -resolved_reference = "532e44b7a4acbb861fa9248398ed73302d49432e" +resolved_reference = "f8ea7bb7e056e531e87e57c023df03048949ff2f" [[package]] name = "connector-waku" version = "0.1.0" description = "" -category = "main" optional = false python-versions = "^3.11" files = [] @@ -369,7 +372,6 @@ url = "connectors/connector-waku" name = "connector-xero" version = "0.1.0" description = "" -category = "main" optional = false python-versions = "^3.11" files = [] @@ -386,7 +388,6 @@ url = "connectors/connector-xero" name = "coverage" version = "6.5.0" description = "Code coverage measurement for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -449,7 +450,6 @@ toml = ["tomli"] name = "distlib" version = "0.3.6" description = "Distribution utilities" -category = "dev" optional = false python-versions = "*" files = [ @@ -461,7 +461,6 @@ files = [ name = "docutils" version = "0.19" description = "Docutils -- Python Documentation Utilities" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -473,7 +472,6 @@ files = [ name = "dparse" version = "0.6.2" description = "A parser for Python dependency files" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -493,7 +491,6 @@ pipenv = ["pipenv"] name = "filelock" version = "3.8.2" description = "A platform independent file lock." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -509,7 +506,6 @@ testing = ["covdefaults (>=2.2.2)", "coverage (>=6.5)", "pytest (>=7.2)", "pytes name = "flake8" version = "5.0.4" description = "the modular source code checker: pep8 pyflakes and co" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -526,7 +522,6 @@ pyflakes = ">=2.5.0,<2.6.0" name = "flake8-bandit" version = "4.1.1" description = "Automated security testing with bandit and flake8." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -542,7 +537,6 @@ flake8 = ">=5.0.0" name = "flask" version = "2.2.2" description = "A simple framework for building complex web applications." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -564,7 +558,6 @@ dotenv = ["python-dotenv"] name = "flask-oauthlib" version = "0.9.6" description = "OAuthlib for Flask" -category = "main" optional = false python-versions = "*" files = [ @@ -582,7 +575,6 @@ requests-oauthlib = ">=0.6.2,<1.2.0" name = "flask-session" version = "0.4.0" description = "Adds server-side session support to your Flask application" -category = "main" optional = false python-versions = "*" files = [ @@ -598,7 +590,6 @@ Flask = ">=0.8" name = "gitdb" version = "4.0.10" description = "Git Object Database" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -613,7 +604,6 @@ smmap = ">=3.0.1,<6" name = "gitpython" version = "3.1.29" description = "GitPython is a python library used to interact with Git repositories" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -628,7 +618,6 @@ gitdb = ">=4.0.1,<5" name = "gunicorn" version = "20.1.0" description = "WSGI HTTP Server for UNIX" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -649,7 +638,6 @@ tornado = ["tornado (>=0.2)"] name = "identify" version = "2.5.10" description = "File identification library for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -664,7 +652,6 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -676,7 +663,6 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -688,7 +674,6 @@ files = [ name = "iniconfig" version = "1.1.1" description = "iniconfig: brain-dead simple config-ini parsing" -category = "dev" optional = false python-versions = "*" files = [ @@ -700,7 +685,6 @@ files = [ name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -712,7 +696,6 @@ files = [ name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -730,7 +713,6 @@ i18n = ["Babel (>=2.7)"] name = "jmespath" version = "1.0.1" description = "JSON Matching Expressions" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -742,7 +724,6 @@ files = [ name = "livereload" version = "2.6.3" description = "Python LiveReload is an awesome tool for web developers" -category = "dev" optional = false python-versions = "*" files = [ @@ -758,7 +739,6 @@ tornado = {version = "*", markers = "python_version > \"2.7\""} name = "markupsafe" version = "2.1.1" description = "Safely add untrusted strings to HTML/XML markup." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -808,7 +788,6 @@ files = [ name = "mccabe" version = "0.7.0" description = "McCabe checker, plugin for flake8" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -820,7 +799,6 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -863,7 +841,6 @@ reports = ["lxml"] name = "mypy-extensions" version = "0.4.3" description = "Experimental type system extensions for programs checked with the mypy typechecker." -category = "dev" optional = false python-versions = "*" files = [ @@ -875,7 +852,6 @@ files = [ name = "nodeenv" version = "1.7.0" description = "Node.js virtual environment builder" -category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ @@ -890,7 +866,6 @@ setuptools = "*" name = "oauthlib" version = "2.1.0" description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" -category = "main" optional = false python-versions = "*" files = [ @@ -908,7 +883,6 @@ test = ["blinker", "cryptography", "mock", "nose", "pyjwt (>=1.0.0)", "unittest2 name = "packaging" version = "21.3" description = "Core utilities for Python packages" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -923,7 +897,6 @@ pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" name = "pathspec" version = "0.10.3" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -935,7 +908,6 @@ files = [ name = "pbr" version = "5.11.0" description = "Python Build Reasonableness" -category = "dev" optional = false python-versions = ">=2.6" files = [ @@ -947,7 +919,6 @@ files = [ name = "platformdirs" version = "2.6.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -963,7 +934,6 @@ test = ["appdirs (==1.4.4)", "pytest (>=7.2)", "pytest-cov (>=4)", "pytest-mock name = "pluggy" version = "1.0.0" description = "plugin and hook calling mechanisms for python" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -979,7 +949,6 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.20.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -999,7 +968,6 @@ virtualenv = ">=20.0.8" name = "pre-commit-hooks" version = "4.4.0" description = "Some out-of-the-box hooks for pre-commit." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1014,7 +982,6 @@ files = [ name = "psycopg2" version = "2.9.5" description = "psycopg2 - Python-PostgreSQL Database Adapter" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1037,7 +1004,6 @@ files = [ name = "pycodestyle" version = "2.9.1" description = "Python style guide checker" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1049,7 +1015,6 @@ files = [ name = "pyflakes" version = "2.5.0" description = "passive checker of Python programs" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1061,7 +1026,6 @@ files = [ name = "pygments" version = "2.13.0" description = "Pygments is a syntax highlighting package written in Python." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1076,7 +1040,6 @@ plugins = ["importlib-metadata"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "dev" optional = false python-versions = ">=3.6.8" files = [ @@ -1091,7 +1054,6 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pytest" version = "7.2.0" description = "pytest: simple powerful testing with Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1113,7 +1075,6 @@ testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2. name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -1128,7 +1089,6 @@ six = ">=1.5" name = "pytz" version = "2022.7" description = "World timezone definitions, modern and historical" -category = "dev" optional = false python-versions = "*" files = [ @@ -1140,7 +1100,6 @@ files = [ name = "pyupgrade" version = "3.3.1" description = "A tool to automatically upgrade syntax for newer versions." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1155,7 +1114,6 @@ tokenize-rt = ">=3.2.0" name = "pyyaml" version = "6.0" description = "YAML parser and emitter for Python" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1205,7 +1163,6 @@ files = [ name = "requests" version = "2.29.0" description = "Python HTTP for Humans." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1227,7 +1184,6 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "requests-oauthlib" version = "1.1.0" description = "OAuthlib authentication support for Requests." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1246,7 +1202,6 @@ rsa = ["oauthlib[signedtoken] (>=2.1.0,<3.0.0)"] name = "ruamel-yaml" version = "0.17.21" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" -category = "dev" optional = false python-versions = ">=3" files = [ @@ -1262,7 +1217,6 @@ jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] name = "s3transfer" version = "0.6.0" description = "An Amazon S3 Transfer Manager" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1280,7 +1234,6 @@ crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] name = "safety" version = "2.3.5" description = "Checks installed dependencies for known vulnerabilities and licenses." -category = "dev" optional = false python-versions = "*" files = [ @@ -1304,7 +1257,6 @@ gitlab = ["python-gitlab (>=1.3.0)"] name = "setuptools" version = "65.6.3" description = "Easily download, build, install, upgrade, and uninstall Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1321,7 +1273,6 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( name = "simplejson" version = "3.18.0" description = "Simple, fast, extensible JSON encoder/decoder for Python" -category = "main" optional = false python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1392,7 +1343,6 @@ files = [ name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1404,7 +1354,6 @@ files = [ name = "smmap" version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1416,7 +1365,6 @@ files = [ name = "snowballstemmer" version = "2.2.0" description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms." -category = "dev" optional = false python-versions = "*" files = [ @@ -1428,7 +1376,6 @@ files = [ name = "sphinx" version = "5.3.0" description = "Python documentation generator" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1463,7 +1410,6 @@ test = ["cython", "html5lib", "pytest (>=4.6)", "typed_ast"] name = "sphinx-autobuild" version = "2021.3.14" description = "Rebuild Sphinx documentation on changes, with live-reload in the browser." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1483,7 +1429,6 @@ test = ["pytest", "pytest-cov"] name = "sphinxcontrib-applehelp" version = "1.0.2" description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1499,7 +1444,6 @@ test = ["pytest"] name = "sphinxcontrib-devhelp" version = "1.0.2" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document." -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1515,7 +1459,6 @@ test = ["pytest"] name = "sphinxcontrib-htmlhelp" version = "2.0.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1531,7 +1474,6 @@ test = ["html5lib", "pytest"] name = "sphinxcontrib-jsmath" version = "1.0.1" description = "A sphinx extension which renders display math in HTML via JavaScript" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1546,7 +1488,6 @@ test = ["flake8", "mypy", "pytest"] name = "sphinxcontrib-qthelp" version = "1.0.3" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document." -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1562,7 +1503,6 @@ test = ["pytest"] name = "sphinxcontrib-serializinghtml" version = "1.1.5" description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)." -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1578,7 +1518,6 @@ test = ["pytest"] name = "spiffworkflow-connector-command" version = "0.2.0" description = "Make HTTP Requests available to SpiffWorkflow Service Tasks" -category = "main" optional = false python-versions = "^3.9" files = [] @@ -1598,7 +1537,6 @@ resolved_reference = "7e20603849ee609267ddc97c8433077e09ccd124" name = "spiffworkflow-proxy" version = "1.0.0" description = "A blueprint that can allow (and limit) SpiffWorkflow's Service Tasks access to an organizations API's, such as connections to AWS Services and existing applications." -category = "main" optional = false python-versions = "^3.9" files = [] @@ -1619,7 +1557,6 @@ resolved_reference = "d64ae29fcc911fefc1a6209bab76948e5e25f627" name = "stevedore" version = "4.1.1" description = "Manage dynamic plugins for Python applications" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1634,7 +1571,6 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tokenize-rt" version = "5.0.0" description = "A wrapper around the stdlib `tokenize` which roundtrips." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1646,7 +1582,6 @@ files = [ name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" -category = "dev" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1658,7 +1593,6 @@ files = [ name = "tornado" version = "6.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "dev" optional = false python-versions = ">= 3.7" files = [ @@ -1679,7 +1613,6 @@ files = [ name = "typeguard" version = "2.13.3" description = "Run-time type checker for Python" -category = "dev" optional = false python-versions = ">=3.5.3" files = [ @@ -1695,7 +1628,6 @@ test = ["mypy", "pytest", "typing-extensions"] name = "types-requests" version = "2.28.11.5" description = "Typing stubs for requests" -category = "main" optional = false python-versions = "*" files = [ @@ -1710,7 +1642,6 @@ types-urllib3 = "<1.27" name = "types-urllib3" version = "1.26.25.4" description = "Typing stubs for urllib3" -category = "main" optional = false python-versions = "*" files = [ @@ -1734,7 +1665,6 @@ files = [ name = "urllib3" version = "1.26.13" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ @@ -1751,7 +1681,6 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "virtualenv" version = "20.17.1" description = "Virtual Python Environment builder" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1772,7 +1701,6 @@ testing = ["coverage (>=6.2)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7 name = "werkzeug" version = "2.2.2" description = "The comprehensive WSGI web application library." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1790,7 +1718,6 @@ watchdog = ["watchdog"] name = "xdoctest" version = "1.1.0" description = "A rewrite of the builtin doctest module" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1816,7 +1743,6 @@ tests-strict = ["cmake (==3.21.2)", "codecov (==2.0.15)", "ninja (==1.10.2)", "p name = "xero-python" version = "1.22.0" description = "Official Python sdk for Xero API generated by OpenAPI spec for oAuth2" -category = "main" optional = false python-versions = ">=3.5" files = [ diff --git a/pyproject.toml b/pyproject.toml index 42d53b1..bb63a9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,11 +12,11 @@ connector-xero = {develop=true, path="connectors/connector-xero"} connector-bamboohr = {develop=true, path="connectors/connector-bamboohr"} connector-waku = {develop=true, path="connectors/connector-waku"} connector-postgresql = {develop=true, path="connectors/connector-postgresql"} -connector-postgres-v2 = { git = "https://github.com/sartography/connector-postgres.git"} connector-aws = { git = "https://github.com/sartography/connector-aws.git"} connector-http = { git = "https://github.com/sartography/connector-http.git"} connector-github = { git = "https://github.com/sartography/connector-github.git"} connector-smtp = { git = "https://github.com/sartography/connector-smtp.git" } +connector-postgres-v2 = { git = "https://github.com/sartography/connector-postgres.git"} gunicorn = "^20.1.0" Flask-OAuthlib = "^0.9.6"