setup
This commit is contained in:
parent
bde207768a
commit
a165ca6bff
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
|
*.egg-info/
|
||||||
/venv/
|
build/
|
||||||
|
dist/
|
||||||
|
|
|
@ -43,4 +43,5 @@ def main():
|
||||||
save_cert_stash(cert_stash, cert_stash_path)
|
save_cert_stash(cert_stash, cert_stash_path)
|
||||||
|
|
||||||
|
|
||||||
main()
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
|
22
setup.cfg
Normal file
22
setup.cfg
Normal 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
|
Reference in a new issue