-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
49 lines (45 loc) · 1.38 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "addheader"
readme = "README.md"
version = "0.3.2"
requires-python = ">=3.7"
authors = [
{name="The IDAES Project"},
{name="Dan Gunter", email="[email protected]"}
]
description = "A command to manage a header section for a source code tree"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"pyyaml"
]
keywords = ["software engineering", "text processing", "utilities"]
[project.urls]
github = "https://github.com/idaes/addheader"
issues = "https://github.com/idaes/addheader/issues"
[project.optional-dependencies]
dev = ["pytest"]
jupyter = ["nbformat"]
[project.scripts]
addheader = "addheader.add:main"