|
22 | 22 | "__copyright__", |
23 | 23 | "__version__", |
24 | 24 | "modname", |
| 25 | + "pypi_name", |
25 | 26 | "py_modules", |
26 | 27 | "entry_points", |
27 | 28 | "__license__", |
|
38 | 39 | "extras_require", |
39 | 40 | "classifiers", |
40 | 41 | "keywords", |
| 42 | + "import_name", |
41 | 43 | ] |
42 | 44 |
|
43 | 45 | __copyright__ = """ |
|
47 | 49 | __version__ = "0.3.1" |
48 | 50 |
|
49 | 51 | modname = "domdf_python_tools" |
| 52 | +pypi_name = "domdf_python_tools" |
| 53 | +import_name = "domdf_python_tools" |
50 | 54 | py_modules = [] |
51 | | -entry_points = None |
| 55 | +entry_points = { |
| 56 | + "console_scripts": [] |
| 57 | + } |
52 | 58 |
|
53 | 59 | __license__ = "GNU Lesser General Public License v3 or later (LGPLv3+)" |
54 | 60 |
|
55 | 61 | short_desc = "Helpful functions for Python" |
56 | 62 |
|
57 | | -author = "Dominic Davis-Foster" |
| 63 | +__author__ = author = "Dominic Davis-Foster" |
58 | 64 | author_email = "dominic@davis-foster.co.uk" |
59 | 65 | github_username = "domdfcoding" |
60 | 66 | web = github_url = f"https://github.com/domdfcoding/domdf_python_tools" |
|
80 | 86 | classifiers = [ |
81 | 87 | 'Development Status :: 4 - Beta', |
82 | 88 | 'Intended Audience :: Developers', |
83 | | - 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', |
84 | 89 | 'Operating System :: OS Independent', |
85 | 90 | 'Programming Language :: Python', |
| 91 | + 'Programming Language :: Python :: 3 :: Only', |
| 92 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
86 | 93 | 'Programming Language :: Python :: 3.6', |
| 94 | + 'Programming Language :: Python :: Implementation :: CPython', |
87 | 95 | 'Programming Language :: Python :: 3.7', |
88 | 96 | 'Programming Language :: Python :: 3.8', |
89 | | - 'Programming Language :: Python :: 3 :: Only', |
90 | | - 'Programming Language :: Python :: Implementation :: CPython', |
91 | 97 | 'Programming Language :: Python :: Implementation :: PyPy', |
92 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
93 | 98 | 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', |
94 | 99 |
|
95 | 100 | ] |
|
0 commit comments