-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
58 lines (51 loc) · 1.44 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
51
52
53
54
55
56
57
58
[build-system]
requires = [
"setuptools>=46",
"wheel",
"setuptools_scm>=7",
"tomli>=1.0.0; python_version < '3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "skyproj"
authors = [
{name = "Eli Rykoff", email = "[email protected]"},
{name = "Alex Drlica-Wagner"},
{name = "others"},
]
description = "Python tools for making sky projections and maps"
dynamic = ["version", "dependencies"]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">= 3.9"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Astronomy",
]
[project.urls]
home = "https://github.com/lsstdesc/skyproj"
[tool.setuptools]
include-package-data = true
zip-safe = true
packages = {find = {exclude=["tests*"]}}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
skyproj = ["data/*.txt", "data/*.dat"]
[tool.setuptools_scm]
write_to = "skyproj/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.flake8]
max-line-length = 110
ignore = ["E133", "E226", "E228", "N802", "N803", "N806", "N812", "N815", "N816", "W503"]
exclude = [
"**/__init__.py",
"docs/conf.py",
"docs/_build/html/conf.py",
"build",
"vendor/mpl_toolkit_functions.py",
]