-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (23 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
25 lines (23 loc) · 792 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "brukeropus"
version = "1.4.3"
authors = [
{ name="Josh Duran", email="josh.m.duran@gmail.com" },
]
description = "A python package for communicating with Bruker OPUS spectroscopy software and reading its binary file format."
readme = "README.md"
dependencies = ["numpy"]
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/joshduran/brukeropus"
Issues = "https://github.com/joshduran/brukeropus/issues"
Documentation = "https://joshduran.github.io/brukeropus/brukeropus.html"