Skip to content

Commit

Permalink
Merge pull request #2 from scipp/update-project
Browse files Browse the repository at this point in the history
Update config from copier_template
  • Loading branch information
SimonHeybrock authored Jun 8, 2023
2 parents cd85a12 + 4a44e11 commit a40d7d5
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 24 deletions.
3 changes: 2 additions & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: 8a9137e
_commit: 92ffaee
_src_path: gh:scipp/copier_template
description: Build scientific pipelines for your data
max_python: '3.11'
min_python: '3.8'
projectname: sciline
year: 2023
35 changes: 32 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,47 @@
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=6.2",
"setuptools>=67",
"setuptools_scm[toml]>=7.0",
]
build-backend = "setuptools.build_meta"

[project]
name = "sciline"
description = "Build scientific pipelines for your data"
authors= [{name="Scipp contributors"}]
license = { "file" = "LICENSE" }
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
requires-python = ">=3.8"
dependencies = [
]
dynamic = ["version"]

[project.urls]
"Bug Tracker" = "https://github.com/scipp/sciline/issues"
"Source" = "https://github.com/scipp/sciline"

[tool.setuptools_scm]

[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -v"
testpaths = "tests"
filterwarnings = [
"error",
"ignore::UserWarning",
]

[tool.bandit]
Expand Down
20 changes: 0 additions & 20 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,27 +1,7 @@
[metadata]
name = sciline
author = Scipp contributors (https://github.com/scipp)
description = Build scientific pipelines for your data
license = BSD
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
url = https://scipp.github.io/sciline
project_urls =
Bug Tracker = https://github.com/scipp/sciline/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
License :: OSI Approved :: BSD License
Operating System :: OS Independent

[options]
package_dir =
= src
packages = find:
install_requires =
python_requires = >=3.8
include_package_data = True

[options.packages.find]
Expand Down

0 comments on commit a40d7d5

Please sign in to comment.