diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -12,19 +12,16 @@ setup( version='0.5.1', packages=find_packages(), scripts=['scripts/lesana'], - package_data={ '': ['*.yaml'] - }, + }, test_suite='tests', - install_requires=[ # 'xapian >= 1.4', 'ruamel.yaml', 'jinja2', - ], + ], python_requires='>=3', - # Metadata author="Elena ``of Valhalla'' Grandi", author_email='valhalla@trueelena.org', @@ -39,7 +36,7 @@ setup( 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', # noqa: E501 'Operating System :: POSIX', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.5', @@ -48,9 +45,10 @@ setup( 'Programming Language :: Python :: 3.8', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Utilities', - ], + ], project_urls={ 'Source': 'https://git.trueelena.org/cgit.cgi/software/lesana/', - 'Documentation': 'https://git.trueelena.org/cgit.cgi/software/lesana/tree/docs', - } + 'Documentation': + 'https://git.trueelena.org/cgit.cgi/software/lesana/tree/docs', + }, ) |