diff options
| author | bozo.kopic <bozo.kopic@gmail.com> | 2020-04-11 02:45:59 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo.kopic@gmail.com> | 2020-04-11 02:45:59 +0200 |
| commit | d950fe9c67ec052ce13f54c50c25387b61c3ce32 (patch) | |
| tree | 3fad0487ebec07e9d0bf9f166f437a538b7481e6 | |
| parent | 816d4add6f017775bc1f6607e392bfb71e393ffa (diff) | |
doit minor fix
| -rw-r--r-- | dodo.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -120,8 +120,7 @@ def _create_setup_py(path): options = {'bdist_wheel': {'python_tag': 'cp38', 'py_limited_api': 'cp38', 'plat_name': 'any'}} - classifiers = ['Programming Language :: Python :: 3', - 'License :: OSI Approved :: GPLv3 License'] + classifiers = ['Programming Language :: Python :: 3'] with open(path, 'w', encoding='utf-8') as f: f.write(f"from setuptools import setup\n\n\n" f"readme = r\"\"\"\n{readme}\n\"\"\"\n\n" |
