mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2024-11-21 22:33:56 +00:00
b595456a05
As of setuptools 46.4.0, this extracts the attribute value statically using the ast module, if possible. This allows it to work properly even if the attribute is stored in a file that cannot be imported at setup time (e. g. because of dependencies that might not be installed yet).
6 lines
62 B
Python
6 lines
62 B
Python
#!/usr/bin/env python3
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup()
|