-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (57 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
60 lines (57 loc) · 1.7 KB
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
50
51
52
53
54
55
56
57
58
59
60
#
# This package is managed using Hatch: a modern, extensible Python project manager.
#
# > Additional Hatch-config for this project is in "hatch.toml"
#
# > See [Hatch Documentation](https://hatch.pypa.io/latest/).
#
#
# Details about this package (analogous to setup.py)
#
[project]
authors = [
{name = "University of Oregon", email = "TODO@uoregon.edu"},
]
classifiers = [
# Provide classifiers selected from https://pypi.org/classifiers/
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
]
dependencies = [
# TODO: List of the set of packages -- delete if you only require the Python stdlib!
# E.g. you may have the following dependencies:
#
# "humanize >=2",
# "netdot >=0.2",
# "requests >=2, <3",
# "uologging >=0.7.0",
# "dataclasses ~=0.8.0; python_version <'3.8'",
]
description = "TODO" # A single line of text describing this package (no more than 200 characters).
dynamic = ["version"]
keywords = [
# TODO: Provide ANY additional keywords that you want to!
"NTS",
"UO",
]
license = "MIT"
name = "example-package" # TODO: Update to match your package's published name (replace any '_' with '-')
python = "3.6"
readme = "docs/user-guide.md"
#
# CLI Tools
# TODO: Fill-in, or delete if you have no CLI tools.
#
[project.scripts]
hello = "example_package.hello_world:main" # Example: Places `hello` command in PATH: enables running `hello` as a command-line interface tool.
#
# (Meta) Build-system details, required by Hatch (hatch.toml).
#
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling>=0.21.0",
]