-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 1.04 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "magplots"
dynamic = ["version"]
authors = [
{ name="Kristina Collins", email="[email protected]"},
]
description = "A python library for generating plots from conjugate magnetometers."
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.6"
dependencies = [
"matplotlib",
"pandas"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers"
]
[project.urls]
Homepage = "https://github.com/KCollins/magplots"
"Bug Tracker" = "https://github.com/KCollins/magplots/issues"
Changelog = "https://github.com/KCollins/magplots/releases"
source = "https://github.com/KCollins/magplots"
download = "https://github.com/KCollins/magplots/releases"
[tool.setuptools]
packages = ["magplots"]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = "R0912,R0913,R0914,R0915,R0917,C0103,W0622"