12 lines
294 B
Python
12 lines
294 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
"""
|
||
|
|
Setup script for django-translatable-fields.
|
||
|
|
|
||
|
|
For modern Python packaging, most configuration is in pyproject.toml.
|
||
|
|
This setup.py is kept for compatibility with older pip versions.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
# All configuration is now in pyproject.toml
|
||
|
|
setup()
|