Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gwdatafind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Duncan Macleod
gwdatafind
Commits
73375932
Verified
Commit
73375932
authored
5 months ago
by
Duncan Macleod
Browse files
Options
Downloads
Patches
Plain Diff
pyproject.toml: consolidate metadata from setup.{cfg,py}
closes #34
parent
79d8d57b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.flake8
+47
-0
47 additions, 0 deletions
.flake8
pyproject.toml
+86
-5
86 additions, 5 deletions
pyproject.toml
setup.py
+0
-23
0 additions, 23 deletions
setup.py
with
133 additions
and
28 deletions
setup.cfg
→
.flake8
+
47
−
0
View file @
73375932
[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 =
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
86
−
5
View file @
73375932
[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*"
,
]
This diff is collapsed.
Click to expand it.
setup.py
deleted
100755 → 0
+
0
−
23
View file @
79d8d57b
# -*- 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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment