diff options
| -rw-r--r-- | Pipfile | 15 | ||||
| -rw-r--r-- | Pipfile.lock | 78 | ||||
| -rw-r--r-- | README.md | 8 | 
3 files changed, 100 insertions, 1 deletions
| diff --git a/Pipfile b/Pipfile new file mode 100644 index 00000000..876e04a6 --- /dev/null +++ b/Pipfile @@ -0,0 +1,15 @@ +[[source]] + +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + + +[dev-packages] + + + +[packages] + +sqlalchemy = "1.2" +flask = "*" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 00000000..62f57613 --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,78 @@ +{ +    "_meta": { +        "hash": { +            "sha256": "24c6cfcf0485df83f3066606e51aa72a2a4978a7e67f4ae61e2aa59ad78ed982" +        }, +        "host-environment-markers": { +            "implementation_name": "cpython", +            "implementation_version": "0", +            "os_name": "posix", +            "platform_machine": "x86_64", +            "platform_python_implementation": "CPython", +            "platform_release": "4.9.0-4-amd64", +            "platform_system": "Linux", +            "platform_version": "#1 SMP Debian 4.9.51-1 (2017-09-28)", +            "python_full_version": "2.7.13", +            "python_version": "2.7", +            "sys_platform": "linux2" +        }, +        "pipfile-spec": 6, +        "requires": {}, +        "sources": [ +            { +                "name": "pypi", +                "url": "https://pypi.python.org/simple", +                "verify_ssl": true +            } +        ] +    }, +    "default": { +        "click": { +            "hashes": [ +                "sha256:29f99fc6125fbc931b758dc053b3114e55c77a6e4c6c3a2674a2dc986016381d", +                "sha256:f15516df478d5a56180fbf80e68f206010e6d160fc39fa508b65e035fd75130b" +            ], +            "version": "==6.7" +        }, +        "flask": { +            "hashes": [ +                "sha256:0749df235e3ff61ac108f69ac178c9770caeaccad2509cb762ce1f65570a8856", +                "sha256:49f44461237b69ecd901cc7ce66feea0319b9158743dd27a2899962ab214dac1" +            ], +            "version": "==0.12.2" +        }, +        "itsdangerous": { +            "hashes": [ +                "sha256:cbb3fcf8d3e33df861709ecaf89d9e6629cff0a217bc2848f1b41cd30d360519" +            ], +            "version": "==0.24" +        }, +        "jinja2": { +            "hashes": [ +                "sha256:74c935a1b8bb9a3947c50a54766a969d4846290e1e788ea44c1392163723c3bd", +                "sha256:f84be1bb0040caca4cea721fcbbbbd61f9be9464ca236387158b0feea01914a4" +            ], +            "version": "==2.10" +        }, +        "markupsafe": { +            "hashes": [ +                "sha256:a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665" +            ], +            "version": "==1.0" +        }, +        "sqlalchemy": { +            "hashes": [ +                "sha256:9ede7070d6fd18f28058be88296ed67893e2637465516d6a596cd9afea97b154" +            ], +            "version": "==1.2.1" +        }, +        "werkzeug": { +            "hashes": [ +                "sha256:d5da73735293558eb1651ee2fddc4d0dedcfa06538b8813a2e20011583c9e49b", +                "sha256:c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c" +            ], +            "version": "==0.14.1" +        } +    }, +    "develop": {} +} @@ -8,5 +8,11 @@                                          ... catalog all the things! -  This is just a concept for now; see [rfc](./rfc). + + +## Python Prototype + +Use `pipenv` (which you can install with `pip`): + +    pipenv shell | 
