-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 814 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
dist-name = "ipython-secrets"
module = "ipython_secrets"
author = "Oliver Steele"
author-email = "steele@osteele.com"
home-page = "https://github.com/osteele/ipython-secrets"
classifiers = [
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python",
]
requires = ["keyring" , "ipython"]
requires-python = ">=3.5"
dev-requires = [
"bumpversion",
"Sphinx",
"sphinx_rtd_theme",
]
description-file = "./README.rst"
[tool.flit.metadata.urls]
Documentation = "https://ipython-secrets.readthedocs.io/en/latest/"