AV-98/setup.py

24 lines
685 B
Python
Raw 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',
version='1.0',
2021-12-30 15:03:08 +00:00
description="Offline Command line Gemini client forked from AV-98.",
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=[],
)