Skip to content
Snippets Groups Projects
Verified Commit 73375932 authored by Duncan Macleod's avatar Duncan Macleod
Browse files

pyproject.toml: consolidate metadata from setup.{cfg,py}

closes #34
parent 79d8d57b
No related branches found
No related tags found
No related merge requests found
[metadata]
name = gwdatafind
version = attr: gwdatafind.__version__
author = Duncan Macleod
author_email = duncan.macleod@ligo.org
description = The GWDataFind data discovery client
license = GPL-3.0-or-later
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
# urls
url = https://gwdatafind.readthedocs.io
download_url = https://pypi.org/project/gwdatafind
project_urls =
Bug Tracker = https://git.ligo.org/gwdatafind/gwdatafind/-/issues/
Documentation = https://gwdatfind.readthedocs.io
Source Code = https://git.ligo.org/gwdatafind/gwdatafind.git
# classifiers
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Intended Audience :: Science/Research
Natural Language :: English
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
License :: OSI Approved :: MIT License
[options]
packages = find:
python_requires = >=3.6
setup_requires =
setuptools
install_requires =
igwn-auth-utils >=0.3.1
ligo-segments
[options.entry_points]
console_scripts =
gw_data_find = gwdatafind.__main__:main
[options.extras_require]
docs =
numpydoc
sphinx >= 4.4.0
sphinx-argparse
sphinx_automodapi
sphinx_rtd_theme
test =
pytest >= 2.8.0
pytest-cov
requests-mock
lint =
flake8
flake8-bandit
flake8-docstrings
radon
# -- tools
; vim: set ft=dosini :
[flake8]
select =
......
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools >= 61.0.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "gwdatafind"
description = "The GWDataFind data discovery client"
authors = [
{ name = "Duncan Macleod", email = "duncan.macleod@ligo.org" },
]
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
# requirements
requires-python = ">=3.6"
dependencies = [
"igwn-auth-utils >=0.3.1",
"ligo-segments",
]
dynamic = [
"version",
]
[project.optional-dependencies]
docs = [
"numpydoc",
"sphinx >= 4.4.0",
"sphinx-argparse",
"sphinx_automodapi",
"sphinx_rtd_theme",
]
test = [
"pytest >= 2.8.0",
"pytest-cov",
"requests-mock",
]
lint = [
"flake8",
"flake8-bandit",
"flake8-docstrings",
"radon",
]
[project.urls]
"Homepage" = "https://gwdatafind.readthedocs.io"
"Bug Tracker" = "https://git.ligo.org/gwdatafind/gwdatafind/-/issues/"
"Documentation" = "https://gwdatafind.readthedocs.io"
"Source Code" = "https://git.ligo.org/gwdatafind/gwdatafind.git"
[project.scripts]
gw_data_find = "gwdatafind.__main__:main"
# -- tools
[tool.coverage.paths]
source = [
"gwdatafind/",
"/usr/lib/python*/*-packages/gwdatafind/",
"/usr/local/lib/python*/*-packages/gwdatafind/",
"gwdatafind/",
"*/gwdatafind/",
]
[tool.coverage.report]
precision = 1
[tool.coverage.run]
source = ["gwdatafind"]
......@@ -21,3 +91,14 @@ filterwarnings = [
"error",
"ignore:.*pkg_resources"
]
[tool.setuptools]
license-files = [ "LICENSE" ]
[tool.setuptools.dynamic]
version = { attr = "gwdatafind.__version__" }
[tool.setuptools.packages.find]
include = [
"gwdatafind*",
]
# -*- coding: utf-8 -*-
# Copyright (C) Cardiff University (2017-2021)
#
# This file is part of GWDataFind
#
# GWDataFind is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# GWDataFind is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GWDataFind. If not, see <http://www.gnu.org/licenses/>.
"""Setup GWDataFind.
"""
from setuptools import setup
setup()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment