Artifact [9b656670d9]
Artifact 9b656670d9f80f425cb2e67d1478c5f82f45d49a:
- Executable file setup.py — part of check-in [098c56d9cf] at 2022-10-15 20:40:05 on branch trunk — add little standalone tool (user: mario size: 557)
#!/usr/bin/env python3 # encoding: utf-8 # api: pip # type: build # title: config for setuptools # # Always prefer setuptools over distutils # from pluginconf.setup import setup setup( debug=1, fn="tk_translate/__init__.py", name="tk_translate", packages=["tk_translate"], package_dir={"": "."}, entry_points={ "console_scripts": [ "tk_translate=tk_translate:main", ] }, extras_require={ "build": ["pluginconf","setuptools"], "unused": ["ttkthemes"] }, # universal=True )