summaryrefslogtreecommitdiff
path: root/setup.py
AgeCommit message (Collapse)Author
2021-01-26doc: Switch URLs to httpsFlorian Bruhin
2021-01-20Bump copyright yearsFlorian Bruhin
Closes #6015
2021-01-19Go back to a normal setup.pyFlorian Bruhin
For some reason, despite using "find:" for the package and this working fine for the sdist, the qutebrowser-git Archlinux package doesn't actually include any qutebrowser/ files anymore. This currently really doesn't seem to be worth the trouble... See #3526 This reverts commit 90323d1d9854dec2382f36e8cfb7c632e18bc97b. This reverts commit 21ee2fe8825cd74f5bce4b1c90f597011feb3a8a.
2021-01-19Switch to declarative setup.py metadataFlorian Bruhin
Switches #3526
2021-01-17Finish dropping PyPEG2Florian Bruhin
Closes #1161
2021-01-13dataclasses: Remaining dependency changesdataclassFlorian Bruhin
See #6023
2021-01-09Make pygments dependency optionalFlorian Bruhin
Closes #5555
2020-12-07Migrate read_file from pkg_resources to importlib.resourcesEli Schwartz
In python 3.9, we can get any resource from a package subdirectory using files(), but on older versions of python, even where importlib.resources exists, we need the backport.
2020-10-26Initial drop of Python 3.5Florian Bruhin
See #4800
2020-08-11Add Python 3.9 classifierFlorian Bruhin
See https://github.com/qutebrowser/qutebrowser/discussions/5658
2020-06-24Update PyPI classifiersFlorian Bruhin
2020-05-11Upgrade documented Python versionsFlorian Bruhin
2020-01-04Adjust copyrights for 2020Florian Bruhin
2019-07-11Fix setup.py after __init__.py changesFlorian Bruhin
Fixes #4907
2019-02-22Update copyright for 2019Jay Kamat
2018-05-29setup.py: Set long_description_content_typeFlorian Bruhin
Otherwise, Warehouse (new PyPI) refuses the upload...
2018-02-10Add Python 3.7 compatibility to setup.pyFlorian Bruhin
2017-11-15Set python_requires in setup.pyFlorian Bruhin
2017-09-21Update metainfo in setup.pyFlorian Bruhin
2017-09-21Move some data from setupcommon to setup.pyFlorian Bruhin
We can't get rid of setupcommon entirely (it's needed by PyInstaller), but at least we can get the data back to setup.py. Fixes #2996
2017-09-19Start using attrsFlorian Bruhin
Closes #1073
2017-05-09Finally update copyrights...Florian Bruhin
2016-02-10Check pep257 via flake8.Florian Bruhin
We'll still keep the pydocstyle environment though until flake8-pep257 adds support for that: https://github.com/Robpol86/flake8-pep257/issues/6
2015-06-26Use exclude= instead of include= for find_packages.Florian Bruhin
It seems the old setuptool version in Ubuntu Trusty doesn't have include=...
2015-06-26Revert "Revert "Don't install scripts package.""Florian Bruhin
This reverts commit 345d048f43cd92032b30cefc452e8e1314f91bc6.
2015-06-26Revert "Don't install scripts package."Florian Bruhin
This reverts commit f61aaa9053d12edb9d6c048ddbe8ab857c7ad109.
2015-06-26Don't install scripts package.Florian Bruhin
See #783.
2015-02-16Add session support.Florian Bruhin
Closes #12. See #499. See #11. This adds PyYAML as a new dependency. It adds the following new commands: :session-delete <name> Delete a session. :session-load <name> Load a session. :session-save [<name>] Save a session. :wq [<name>] Save open pages and quit. And the following new settings: general -> save-session: Whether to always save the open pages.
2015-01-03Update copyright yearsFlorian Bruhin
2014-12-28Use Qt resources for the window icon.Florian Bruhin
2014-12-28Only remove icon tree if necessary.Florian Bruhin
2014-12-28Use a dirty hack to copy icon files into package.Florian Bruhin
See #325.
2014-12-28Set window icon. Closes #325.Florian Bruhin
2014-12-04Remove extras_require from setup.pyFlorian Bruhin
2014-11-24Get rid of ez_setup.py.Florian Bruhin
This made life easier for systems without a package manager (Windows, I'm looking at you!), but for anything else it tried to bootstrap setuptools even though it was already installed (in a slightly older version) which lead to conflicting files when packaging.
2014-09-22Add /usr/bin/env to shebangsFlorian Bruhin
2014-09-22Merge branch 'newcmd'Florian Bruhin
Conflicts: .flake8 pkg/PKGBUILD.qutebrowser-git qutebrowser/browser/commands.py qutebrowser/browser/hints.py qutebrowser/config/configdata.py qutebrowser/network/qutescheme.py qutebrowser/test/config/test_configtypes.py qutebrowser/utils/utils.py
2014-09-22Revert "Start patching setuptools commands"Florian Bruhin
This reverts commit 42e8e800aa2c31d3f067d12e75e7eb39cee90e12.
2014-09-22Start patching setuptools commandsFlorian Bruhin
2014-09-15Add pygments as dependency.Florian Bruhin
2014-09-12Remove explicit package_data from setup.pyFlorian Bruhin
2014-08-28Add dependency on jinja2.Florian Bruhin
2014-08-26Clean up importsFlorian Bruhin
2014-08-20Update setup.py.Florian Bruhin
2014-07-31Adjust shebangs to call python3Florian Bruhin
2014-07-31Mark scripts as executable.Florian Bruhin
2014-06-24Get rid of ipdb/IPython.Florian Bruhin
This caused more problems than it's worth really, and it does some black magic I'm not comfortable with.
2014-06-19Move extras_require to setup.pyFlorian Bruhin
2014-06-19Add vim modelines to all files.Florian Bruhin
2014-06-04Move init to own file qutebrowser.pyFlorian Bruhin