av-98-offline/setup.py

24 lines
686 B
Python
Raw Permalink Normal View History

2020-06-07 20:48:44 +00:00
from setuptools import setup
setup(
2021-12-30 15:03:08 +00:00
name='offpunk',
2022-03-23 21:19:31 +00:00
version='1.2',
description="Offline-First Gemini/Web/Gopher/RSS reader and browser",
2021-12-30 15:03:08 +00:00
author="Ploum",
author_email="offpunk@ploum.eu",
url='https://tildegit.org/ploum/AV-98-offline/',
2020-06-07 20:48:44 +00:00
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Development Status :: 4 - Beta',
],
2021-12-30 15:03:08 +00:00
py_modules = ["offpunk"],
2020-06-07 20:48:44 +00:00
entry_points={
2021-12-30 15:03:08 +00:00
"console_scripts": ["offpunk=offpunk:main"]
2020-06-07 20:48:44 +00:00
},
install_requires=[],
)