This commit is contained in:
dece 2021-05-29 17:17:04 +02:00
parent bde207768a
commit a165ca6bff
3 changed files with 27 additions and 3 deletions

5
.gitignore vendored
View file

@ -1,3 +1,4 @@
*.pyc
/venv/
*.egg-info/
build/
dist/

View file

@ -43,4 +43,5 @@ def main():
save_cert_stash(cert_stash, cert_stash_path)
main()
if __name__ == '__main__':
main()

22
setup.cfg Normal file
View file

@ -0,0 +1,22 @@
[metadata]
name = bebop-browser
version = 0.0.1
description = Terminal browser for Gemini
long_description = file: README.md
license = GPLv3
author = dece
author-email = shgck@pistache.land
home-page = https://git.dece.space/Dece/Bebop
classifiers =
Environment :: Console
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
[options]
packages = bebop, bebop.browser
python_requires = >= 3.7
setup_requires = setuptools >= 38.3.0
[options.entry_points]
console_scripts =
bebop = bebop.__main__:main