-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from using setup.py to pyproject.toml
- Loading branch information
Showing
9 changed files
with
118 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-393-g0e700c1 | ||
2021.08.26-394-gd21e6ea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,108 @@ requires = [ | |
] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = "pulpcore" | ||
version = "3.68.0.dev" | ||
description = "Pulp Django Application and Related Modules" | ||
readme = "README.md" | ||
authors = [ | ||
{name="Pulp Team", email="[email protected]"}, | ||
] | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
"Operating System :: POSIX :: Linux", | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: Django", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"aiodns>=3.0,<=3.2.0", | ||
"aiofiles>=22.1,<24.2.0", | ||
"aiohttp>=3.8.1,<3.10.11", | ||
"asyncio-throttle>=1.0,<=1.0.2", | ||
"async-timeout>=4.0.3,<4.0.4;python_version<'3.11'", | ||
"backoff>=2.1.2,<2.2.2", | ||
"click>=8.1.0,<=8.1.7", | ||
"cryptography>=38.0.1,<43.0.4", | ||
"Django~=4.2.0", # LTS version, switch only if we have a compelling reason to", | ||
"django-filter>=23.1,<=24.3", | ||
"django-guid>=3.3,<=3.5.0", | ||
"django-import-export>=2.9,<3.4.0", | ||
"django-lifecycle>=1.0,<=1.2.4", | ||
"djangorestframework>=3.14.0,<=3.15.2", | ||
"djangorestframework-queryfields>=1.0,<=1.1.0", | ||
"drf-access-policy>=1.1.2,<1.5.1", | ||
"drf-nested-routers>=0.93.4,<=0.94.1", | ||
"drf-spectacular==0.27.2", # We monkeypatch this so we need a very narrow requirement string | ||
"dynaconf>=3.1.12,<3.3.0", | ||
"gunicorn>=20.1,<23.1.0", | ||
"importlib-metadata>=6.0.1,<=6.0.1", # Pinned to fix opentelemetry dependency solving issues with pip | ||
"jinja2>=3.1,<=3.1.4", | ||
"json_stream>=2.3.2,<2.4", | ||
"jq>=1.6.0,<1.9.0", | ||
"PyOpenSSL<25.0", | ||
"opentelemetry-api>=1.27.0,<1.28", | ||
"opentelemetry-sdk>=1.27.0,<1.28", | ||
"opentelemetry-exporter-otlp-proto-http>=1.27.0,<1.28", | ||
"protobuf>=4.21.1,<5.0", | ||
"pulp-glue>=0.18.0,<0.30", | ||
"pygtrie>=2.5,<=2.5.0", | ||
"psycopg[binary]>=3.1.8,<=3.2.3", | ||
"pyparsing>=3.1.0,<=3.2.0", | ||
"python-gnupg>=0.5,<=0.5.3", | ||
"PyYAML>=5.1.1,<=6.0.2", | ||
"redis>=4.3,<5.2.1", | ||
"tablib<3.6.0", | ||
"url-normalize>=1.4.3,<=1.4.3", | ||
"uuid6>=2023.5.2,<=2024.7.10", | ||
"whitenoise>=5.0,<6.9.0", | ||
"yarl>=1.8,<1.17.2", | ||
] | ||
|
||
[project.optional-dependencies] | ||
sftp = ["django-storages[sftp]==1.14.4"] | ||
s3 = ["django-storages[boto3]==1.14.3"] | ||
google = ["django-storages[google]==1.14.3"] | ||
azure = ["django-storages[azure]==1.14.3"] | ||
prometheus = ["django-prometheus"] | ||
kafka = [ | ||
# Pinned because project warns "things might (and will) break with every update" | ||
"cloudevents==1.11.0", | ||
"confluent-kafka>=2.4.0,<2.7.0", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://pulpproject.org" | ||
Documentation = "https://pulpproject.org" | ||
Repository = "https://github.com/pulp/pulpcore" | ||
"Bug Tracker" = "https://github.com/pulp/pulpcore/issues" | ||
Changelog = "https://pulpproject.org/pulpcore/changes/" | ||
|
||
[project.scripts] | ||
pulpcore-manager = "pulpcore.app.manage:manage" | ||
pulpcore-worker = "pulpcore.tasking.entrypoint:worker" | ||
pulpcore-api = "pulpcore.app.entrypoint:main" | ||
pulpcore-content = "pulpcore.content.entrypoint:main" | ||
|
||
[project.entry-points."pulpcore.plugin"] | ||
pulp_file = "pulp_file:default_app_config" | ||
pulp_certguard = "pulp_certguard:default_app_config" | ||
|
||
[project.entry-points."pytest11"] | ||
pulpcore = "pulpcore.pytest_plugin" | ||
pulp_file = "pulp_file.pytest_plugin" | ||
pulp_certguard = "pulp_certguard.pytest_plugin" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
|
||
[tool.towncrier] | ||
package = "pulpcore" | ||
filename = "CHANGES.md" | ||
|
This file was deleted.
Oops, something went wrong.