summaryrefslogtreecommitdiffstats
path: root/tests/samples/requires-envmark/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samples/requires-envmark/pyproject.toml')
-rw-r--r--tests/samples/requires-envmark/pyproject.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/samples/requires-envmark/pyproject.toml b/tests/samples/requires-envmark/pyproject.toml
new file mode 100644
index 0000000..e97c5f0
--- /dev/null
+++ b/tests/samples/requires-envmark/pyproject.toml
@@ -0,0 +1,12 @@
+[build-system]
+requires = ["flit"]
+
+[tool.flit.metadata]
+module = "module1"
+author = "Sir Robin"
+author-email = "robin@camelot.uk"
+home-page = "http://github.com/sirrobin/module1"
+requires = [
+ "requests",
+ "pathlib2; python_version == '2.7'",
+]