jetforce/setup.py

35 lines
1.1 KiB
Python
Raw Normal View History

2019-08-05 04:01:10 +02:00
import codecs
import setuptools
def long_description():
with codecs.open("README.md", encoding="utf8") as f:
return f.read()
setuptools.setup(
name="Jetforce",
2019-08-05 04:02:18 +02:00
version="0.0.1",
2019-08-05 04:01:10 +02:00
url="https://github.com/michael-lazar/jetforce",
license="GPL-3.0",
author="Michael Lazar",
author_email="lazar.michael22@gmail.com",
description="An Experimental Gemini Server",
long_description=long_description(),
py_modules=["jetforce"],
entry_points={"console_scripts": ["jetforce=jetforce:run_server"]},
2019-08-06 00:47:59 +02:00
python_requires=">=3.7",
2019-08-05 04:01:10 +02:00
keywords="gemini server tcp gopher asyncio",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)