-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.42 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
[build-system]
# Specifies the build system to use.
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
# Basic information about your project.
name = "cooethercat"
version = "0.1.0"
dependencies = ["pysoem"]
requires-python = ">=3.12"
authors = [
{name = "Jake Zimmer", email = "your.email@example.com"},
{name = "Prakriti Gupta", email = "your.email@example.com"},
{name = "Jeb Bailey", email = "your.email@example.com"},
]
maintainers = [
{name = "Caltech Optical Observatories", email = "your.email@example.com"}
]
description = "A python ethercat library, presently principlally for the Maxon EPOS4"
readme = "README.md"
license = { text = "CC-BY" }
keywords = ["ethercat", "maxon", "EPOS4"]
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/CaltechOpticalObservatories/coo-ethercat"
#"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 lris2csu. 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 = [
]