-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.03 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "snlo-helper"
dynamic = ["version"]
authors = [
{name = "Benedikt Burger"},
]
description = "An autoclicker to automatically configure and read SNLO."
keywords = ["SNLO", "nonlinear optics", "simulation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"pyautogui",
"pyperclip",
]
readme = "README.md"
[project.optional-dependencies]
full = ["numpy"]
[project.urls]
Repository = "https://github.com/BenediktBurger/snlo-helper"
Issues = "https://github.com/BenediktBurger/snlo-helper/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm>=7.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# write_to = "pyleco/_version.py"
[tool.ruff]
select = ["E", "F", "W"]
line-length = 100
exclude = [
".git",
".venv",
"__pypackages__",
"__pycache__",
"build",
"dist",
"docs/conf.py",
]