ce4d3c0b5c
* Add E133 and W503 to ignored list for flake8 * Drop making releases for Ubuntu 18.04
55 lines
1.6 KiB
INI
55 lines
1.6 KiB
INI
[metadata]
|
|
name = novelWriter
|
|
version = attr: novelwriter.__version__
|
|
author = Veronica Berglyd Olsen
|
|
author_email = code@vkbo.net
|
|
description = A markdown-like text editor for planning and writing novels
|
|
url = https://novelwriter.io
|
|
long_description = file: setup/description_pypi.md
|
|
long_description_content_type = text/markdown
|
|
license_file = LICENSE.md
|
|
license = GNU General Public License v3
|
|
classifiers =
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
Development Status :: 5 - Production/Stable
|
|
Operating System :: OS Independent
|
|
Intended Audience :: End Users/Desktop
|
|
Natural Language :: English
|
|
Topic :: Text Editors
|
|
project_urls =
|
|
Bug Tracker = https://github.com/vkbo/novelWriter/issues
|
|
Documentation = https://novelwriter.readthedocs.io/en/stable
|
|
Source Code = https://github.com/vkbo/novelWriter
|
|
|
|
[options]
|
|
python_requires = >=3.7
|
|
include_package_data = True
|
|
packages = find:
|
|
install_requires =
|
|
pyqt5>=5.3
|
|
lxml>=4.2.0
|
|
pyenchant>=3.0.0
|
|
|
|
[options.packages.find]
|
|
exclude = docs, tests, sample
|
|
|
|
[options.entry_points]
|
|
console_script =
|
|
novelwriter-cli = novelwriter:main
|
|
gui_scripts =
|
|
novelwriter = novelwriter:main
|
|
|
|
[bdist_wheel]
|
|
universal = 0
|
|
|
|
[flake8]
|
|
ignore = E133,E221,E226,E228,E241,W503
|
|
max-line-length = 99
|
|
exclude = docs/*
|