You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
657 B
23 lines
657 B
from setuptools import setup |
|
|
|
setup( |
|
name='AV-98', |
|
version='1.0.2dev', |
|
description="Command line Gemini client.", |
|
author="Solderpunk", |
|
author_email="solderpunk@sdf.org", |
|
url='https://tildegit.org/solderpunk/AV-98/', |
|
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 = ["av98"], |
|
entry_points={ |
|
"console_scripts": ["av98=av98:main"] |
|
}, |
|
install_requires=[], |
|
)
|
|
|