-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.37 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
[build-system]
# Specifies the build system to use.
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
# Basic information about your project.
name = "ozoptics"
version = "0.1.0"
dependencies = [
"hardware_device_base@git+https://github.com/COO-Utilities/hardware_device_base#egg=main"
]
requires-python = ">=3.7"
authors = [
{name = "Don Neill", email = "neill@astro.caltech.edu"}
]
maintainers = [
{name = "Don Neill", email = "neill@astro.caltech.edu"}
]
description = "OZ Optics attenuator software"
readme = "README.md"
license = { text = "MIT" }
# keywords = ["example", "package", "keywords"]
classifiers = [
"Programming Language :: Python"
]
[project.urls]
# Various URLs related to your project. These links are displayed on PyPI.
# Homepage = "https://example.com"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/COO-Utils/ozoptics"
# "Bug Tracker" = "https://github.com/yourusername/your-repo/issues"
# Changelog = "https://github.com/yourusername/your-repo/blob/master/CHANGELOG.md"
[project.scripts]
# Defines command-line scripts for your package. Replace with your script and function.
# your-command = "your_module:your_function"
[project.optional-dependencies]
# Optional dependencies that can be installed with extra tags, like "dev".
dev = [
"pytest"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]