]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:green_heart: Fix depencency names, again...
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 9 Dec 2018 15:33:10 +0000 (19:33 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Sun, 9 Dec 2018 15:33:10 +0000 (19:33 +0400)
.travis.yml
dist/fastapi-0.1.0/pyproject.toml [new file with mode: 0644]

index 47c2625c67818f801944ec3c8d20553c14046535..a6dc5a67559ccaa2a4f134bc8e1f3ae567b5594a 100644 (file)
@@ -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 (file)
index 0000000..1667563
--- /dev/null
@@ -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"