av-98-offline/setup.py

24 lines
686 B
Python
Executable File

from setuptools import setup
setup(
name='offpunk',
version='1.2',
description="Offline-First Gemini/Web/Gopher/RSS reader and browser",
author="Ploum",
author_email="offpunk@ploum.eu",
url='https://tildegit.org/ploum/AV-98-offline/',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Development Status :: 4 - Beta',
],
py_modules = ["offpunk"],
entry_points={
"console_scripts": ["offpunk=offpunk:main"]
},
install_requires=[],
)