diff --git a/.cookiecutter/includes/setuptools/install_requires b/.cookiecutter/includes/setuptools/install_requires deleted file mode 100644 index a211342..0000000 --- a/.cookiecutter/includes/setuptools/install_requires +++ /dev/null @@ -1,3 +0,0 @@ -google-auth-oauthlib -PyJWT -pyramid>=2.0.0 diff --git a/pyproject.toml b/pyproject.toml index fe21836..028e66f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,24 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] build-backend = "setuptools.build_meta" +[project] +dynamic = ["version"] +name = "pyramid-googleauth" +description = "'Sign in with Google' for Pyramid." +readme = "README.md" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Intended Audience :: Developers", +] +requires-python = ">=3.8" +dependencies = [ +] + +[project.urls] +Repository = "https://github.com/hypothesis/pyramid-googleauth" +Issues = "https://github.com/hypothesis/pyramid-googleauth/issues" +Changelog = "https://github.com/hypothesis/pyramid-googleauth/releases" [tool.setuptools_scm] [tool.pytest.ini_options] diff --git a/setup.cfg b/setup.cfg index 0867440..141d5ae 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,32 +1,3 @@ -[metadata] -name = pyramid-googleauth -description = 'Sign in with Google' for Pyramid. -long_description = file: README.md -long_description_content_type = text/markdown -url = https://github.com/hypothesis/pyramid-googleauth -project_urls = - Bug Tracker = https://github.com/hypothesis/pyramid-googleauth/issues - Changelog = https://github.com/hypothesis/pyramid-googleauth/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 = - google-auth-oauthlib - PyJWT - pyramid>=2.0.0 - -[options.packages.find] -where = src - -[options.entry_points] - [pycodestyle] ignore = # Disable pycodestyle errors and warnings that we don't care about because