diff options
| author | 2025-12-11 19:45:30 +0000 | |
|---|---|---|
| committer | 2025-12-11 19:51:28 +0000 | |
| commit | 9f5d340d1ef627e6d9350cf31b89e62868f30b02 (patch) | |
| tree | 86c7a7d2c75ffade2a428524188187caf8547d77 /pkgs/pywikibot-scripts/setup.py | |
| parent | try to deflakify it (broken commit) (diff) | |
| signature | ||
try to make scripts work in nix
the wrapper is annoying me
Diffstat (limited to 'pkgs/pywikibot-scripts/setup.py')
| -rw-r--r-- | pkgs/pywikibot-scripts/setup.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/pywikibot-scripts/setup.py b/pkgs/pywikibot-scripts/setup.py new file mode 100644 index 0000000..7f00ffc --- /dev/null +++ b/pkgs/pywikibot-scripts/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup + +setup(**{ + 'name': 'scripts', + 'version': '0.0.0', + 'description': 'Scripts from pywikibot', + 'long_description': None, + 'author': None, + 'author_email': None, + 'maintainer': None, + 'maintainer_email': None, + 'url': None, + 'packages': ['scripts'], + 'package_data': {'': ['*']}, + 'install_requires': [], + 'entry_points': {}, + 'python_requires': '', +}) |
