-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (33 loc) · 979 Bytes
/
pyproject.toml
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
31
32
33
34
35
36
37
38
[project]
name = "template"
description = "a simple, fast, and powerful template"
readme = "readme"
requires-python = ">=3.7"
license = {file = "license"}
authors = [
{name = "ngam", email="ngam@users.noreply.github.com"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
]
keywords = [
"template",
]
dependencies = [""]
# This is set automatically by flit using `template.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/uncscode/template"
repository = "https://github.com/uncscode/template"
[project.optional-dependencies]
dev = [
"pylint", "pytest", "autopep8", "jupyterlab", "pytype",
"typing", "build", "flake8", "jupyter-book", "ghp-import",
"matplotlib", "numpy", "scipy",
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"