-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.04 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
[build-system]
# Specifies the build system to use.
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
# Basic information about your project.
name = "gecko"
version = "0.1.0"
description = "Information gathering tool for a saving state of a machine after a crash for later diagnosis"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
authors = [
{name = "Elijah Anakalea-Buckley", email = "elijahab@caltech.edu"}
]
dependencies = [
"pillow",
"vncdotool",
"psutil"
]
classifiers = [
"Programming Language :: Python"
]
[project.urls]
# Various URLs related to your project. These links are displayed on PyPI.
Repository = "https://github.com/CaltechOpticalObservatories/gecko.git"
[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",
"black",
"flake8"
]