Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply updates from cookiecutter #48

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cookiecutter/includes/pyproject.toml/dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"pyramid",
1 change: 0 additions & 1 deletion .cookiecutter/includes/setuptools/install_requires

This file was deleted.

20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project]
dynamic = ["version"]
name = "h-assets"
description = "Pyramid views for serving collections of compiled static assets (eg. bundles of JavaScript and CSS)."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
]
requires-python = ">=3.8"
dependencies = [
"pyramid",
]

[project.urls]
Repository = "https://github.com/hypothesis/h-assets"
Issues = "https://github.com/hypothesis/h-assets/issues"
Changelog = "https://github.com/hypothesis/h-assets/releases"

[tool.setuptools_scm]

[tool.pytest.ini_options]
Expand Down
27 changes: 0 additions & 27 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@
[metadata]
name = h-assets
description = Pyramid views for serving collections of compiled static assets (eg. bundles of JavaScript and CSS).
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/hypothesis/h-assets
project_urls =
Bug Tracker = https://github.com/hypothesis/h-assets/issues
Changelog = https://github.com/hypothesis/h-assets/releases
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Intended Audience :: Developers

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

[options.packages.find]
where = src

[options.entry_points]

[pycodestyle]
ignore =
# Disable pycodestyle errors and warnings that we don't care about because
Expand Down
Loading