Skip to content

Commit b04a494

Browse files
authored
Merge pull request #100 from pdh/pdh/fixup-package
fixup package to use pyproject.toml
2 parents 2dffb0d + 594291c commit b04a494

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
2+
from setuptools import setup
3+
14
"""
25
Este setup.py se mantiene solo para compatibilidad hacia atrás.
36
El proyecto ahora usa pyproject.toml como configuración principal.
47
"""
58

69
from setuptools import setup
710

8-
# La configuración real está en pyproject.toml
9-
setup()
11+
if __name__ == "__main__":
12+
setup()
13+

0 commit comments

Comments
 (0)