File: setup.py

package info (click to toggle)
alembic 1.13.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,976 kB
  • sloc: python: 37,768; makefile: 100; sh: 5
file content (7 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
from setuptools import __version__
from setuptools import setup

if not int(__version__.partition(".")[0]) >= 47:
    raise RuntimeError(f"Setuptools >= 47 required. Found {__version__}")

setup()