|
1 | 1 | [build-system]
|
2 | 2 | build-backend = "setuptools.build_meta"
|
3 | 3 | requires = [
|
4 |
| - "setuptools>=61.0", |
| 4 | + "setuptools>=61.2", |
5 | 5 | ]
|
6 | 6 |
|
| 7 | + |
| 8 | +[project] |
| 9 | +name = "alembic" |
| 10 | +description = "A database migration tool for SQLAlchemy." |
| 11 | +authors = [{name = "Mike Bayer", email = "mike_mp@zzzcomputing.com"}] |
| 12 | +license = {text = "MIT"} |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 5 - Production/Stable", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "Environment :: Console", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Programming Language :: Python :: 3", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | + "Programming Language :: Python :: 3.13", |
| 26 | + "Programming Language :: Python :: Implementation :: CPython", |
| 27 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 28 | + "Topic :: Database :: Front-Ends", |
| 29 | +] |
| 30 | +requires-python = ">=3.9" |
| 31 | +dependencies = [ |
| 32 | + "SQLAlchemy>=1.4.0", |
| 33 | + "Mako", |
| 34 | + "typing-extensions>=4.12", |
| 35 | +] |
| 36 | +dynamic = ["version"] |
| 37 | + |
| 38 | +[project.readme] |
| 39 | +file = "README.rst" |
| 40 | +content-type = "text/x-rst" |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +Homepage = "https://alembic.sqlalchemy.org" |
| 44 | +Documentation = "https://alembic.sqlalchemy.org/en/latest/" |
| 45 | +Changelog = "https://alembic.sqlalchemy.org/en/latest/changelog.html" |
| 46 | +Source = "https://github.com/sqlalchemy/alembic/" |
| 47 | +"Issue Tracker" = "https://github.com/sqlalchemy/alembic/issues/" |
| 48 | + |
| 49 | +[project.optional-dependencies] |
| 50 | +tz = ["tzdata"] |
| 51 | + |
| 52 | +[project.scripts] |
| 53 | +alembic = "alembic.config:main" |
| 54 | + |
| 55 | +[tool.setuptools] |
| 56 | +include-package-data = true |
| 57 | +zip-safe = false |
| 58 | +package-dir = {"" = "."} |
| 59 | +license-files = ["LICENSE"] |
| 60 | + |
| 61 | +[tool.setuptools.package-data] |
| 62 | +alembic = ["*.pyi", "py.typed"] |
| 63 | + |
| 64 | +[tool.setuptools.exclude-package-data] |
| 65 | +alembic = ["test*"] |
| 66 | + |
| 67 | +[tool.setuptools.packages.find] |
| 68 | +include = ["alembic*"] |
| 69 | +exclude = [ |
| 70 | + "test*", |
| 71 | + "examples*", |
| 72 | +] |
| 73 | +namespaces = true |
| 74 | + |
| 75 | + |
| 76 | +[tool.setuptools.dynamic] |
| 77 | +version = {attr = "alembic.__version__"} |
| 78 | + |
| 79 | +[tool.distutils.egg_info] |
| 80 | +tag-build = "dev" |
| 81 | + |
| 82 | +[tool.distutils.upload_docs] |
| 83 | +upload-dir = "docs/build/output/html" |
| 84 | + |
| 85 | +[tool.distutils.upload] |
| 86 | +sign = 1 |
| 87 | +identity = "C4DAFEE1" |
| 88 | + |
| 89 | + |
| 90 | + |
| 91 | + |
| 92 | + |
7 | 93 | [tool.black]
|
8 | 94 | line-length = 79
|
| 95 | +target-version = ['py39'] |
9 | 96 |
|
10 | 97 | [tool.pytest.ini_options]
|
11 | 98 | addopts = "--tb native -v -r sfxX -p no:warnings -p no:logging --maxfail=100"
|
|
0 commit comments