|
1 | | -# Copyright © 2020 Dominic Davis-Foster <dominic@davis-foster.co.uk> |
| 1 | +# Copyright (C) 2019-2020 Dominic Davis-Foster <dominic@davis-foster.co.uk> |
2 | 2 | # |
3 | 3 | # This program is free software: you can redistribute it and/or modify |
4 | 4 | # it under the terms of the GNU General Public License as published by |
|
18 | 18 | import pathlib |
19 | 19 |
|
20 | 20 | copyright = """ |
21 | | -2019 Dominic Davis-Foster <dominic@davis-foster.co.uk> |
| 21 | +2019-2020 Dominic Davis-Foster <dominic@davis-foster.co.uk> |
22 | 22 | """ |
23 | 23 |
|
24 | 24 | VERSION = "0.2.6" |
|
31 | 31 |
|
32 | 32 | short_desc = 'Helpful functions for Python' |
33 | 33 |
|
34 | | -classifiers = [ |
35 | | - 'Development Status :: 4 - Beta', |
36 | | - 'Intended Audience :: Developers', |
37 | | - "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", |
38 | | - 'Operating System :: OS Independent', |
39 | | - 'Programming Language :: Python', |
40 | | - 'Programming Language :: Python :: 3.6', |
41 | | - 'Programming Language :: Python :: 3.7', |
42 | | - 'Programming Language :: Python :: 3.8', |
43 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
44 | | - ] |
45 | | - |
46 | 34 | author = "Dominic Davis-Foster" |
47 | 35 | author_email = "dominic@davis-foster.co.uk" |
48 | 36 | github_username = "domdfcoding" |
49 | 37 | web = github_url = f"https://github.com/{github_username}/{modname}" |
| 38 | +project_urls = { |
| 39 | + "Documentation": f"https://{modname}.readthedocs.io", # TODO: Make this link match the package version |
| 40 | + "Issue Tracker": f"{github_url}/issues", |
| 41 | + "Source Code": github_url, |
| 42 | + } |
50 | 43 |
|
51 | 44 | install_requires = [] |
52 | 45 |
|
|
55 | 48 | long_description = (pathlib.Path.cwd().parent / "README.rst").read_text() + '\n' |
56 | 49 | else: |
57 | 50 | long_description = pathlib.Path("README.rst").read_text() + '\n' |
| 51 | + |
| 52 | + |
| 53 | +classifiers = [ |
| 54 | + 'Development Status :: 4 - Beta', |
| 55 | + # "Development Status :: 4 - Beta", |
| 56 | + # "Development Status :: 5 - Production/Stable", |
| 57 | + # "Development Status :: 6 - Mature", |
| 58 | + # "Development Status :: 7 - Inactive", |
| 59 | + 'Intended Audience :: Developers', |
| 60 | + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", |
| 61 | + 'Operating System :: OS Independent', |
| 62 | + 'Programming Language :: Python', |
| 63 | + 'Programming Language :: Python :: 3.6', |
| 64 | + 'Programming Language :: Python :: 3.7', |
| 65 | + 'Programming Language :: Python :: 3.8', |
| 66 | + "Programming Language :: Python :: 3 :: Only", |
| 67 | + "Programming Language :: Python :: Implementation :: CPython", |
| 68 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 69 | + ] |
0 commit comments