34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# license = { file = "LICENSE" }
# * for setuptools compat a long dynamic field is required (but flit hates it)
# dynamic = ["version", "description", "readme", "requires-python",
# "license", "keywords", "classifiers", "urls", "entry-points"]
# Not sure yet if the pyproject.toml specs allow for reconcilation here.
#
""" monkeypatches flint to use pluginconf sources for packaging """
import sys
import re
import functools
import flit_core.common
|
>
|
>
>
>
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# license = { file = "LICENSE" }
# * for setuptools compat a long dynamic field is required (but flit hates it)
# dynamic = ["version", "description", "readme", "requires-python",
# "license", "keywords", "classifiers", "urls", "entry-points"]
# Not sure yet if the pyproject.toml specs allow for reconcilation here.
#
"""
monkeypatches flint to use pluginconf sources for packaging
![flit - can't believe it's not setup.py!!](https://i.imgur.com/82cTkcq.gif)
"""
import sys
import re
import functools
import flit_core.common
|