From 6a55bf5f9399746d798b023c2f4097bca2d20e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 9 Dec 2018 19:33:10 +0400 Subject: [PATCH] :green_heart: Fix depencency names, again... --- .travis.yml | 4 ++-- dist/fastapi-0.1.0/pyproject.toml | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 dist/fastapi-0.1.0/pyproject.toml diff --git a/.travis.yml b/.travis.yml index 47c2625c6..a6dc5a675 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,5 +13,5 @@ install: script: - bash scripts/test.sh -# after_script: -# - codecov +after_script: + - bash <(curl -s https://codecov.io/bash) diff --git a/dist/fastapi-0.1.0/pyproject.toml b/dist/fastapi-0.1.0/pyproject.toml new file mode 100644 index 000000000..166756322 --- /dev/null +++ b/dist/fastapi-0.1.0/pyproject.toml @@ -0,0 +1,15 @@ +[build-system] +requires = ["flit"] +build-backend = "flit.buildapi" + +[tool.flit.metadata] +module = "fastapi" +author = "Sebastián Ramírez" +author-email = "tiangolo@gmail.com" +home-page = "https://github.com/tiangolo/fastapi" +classifiers = ["License :: OSI Approved :: MIT License"] +requires = [ + "starlette >=0.9.7", + "pydantic >=0.16" +] +requires-python = ">=3.6"