diff options
author | Solderpunk <solderpunk@sdf.org> | 2020-06-07 22:48:44 +0200 |
---|---|---|
committer | Solderpunk <solderpunk@sdf.org> | 2020-06-07 22:48:44 +0200 |
commit | d7082d23e5c9744ed29ee15ff9c631b7b599eb57 (patch) | |
tree | 4b759485aa19a243f5c753c7f5d8a470fbe10155 | |
parent | be20eb4a509b539ff2bd6a706777e605bcf78ee9 (diff) |
Add setup.py
-rwxr-xr-x | setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..e4e4c96 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup + +setup( + name='AV-98', + version='0.0.1', + 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=[], +) |