jetforce/setup.py

48 lines
1.4 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",
2020-05-24 03:38:55 +02:00
version="0.3.0b1",
2019-08-05 04:01:10 +02:00
url="https://github.com/michael-lazar/jetforce",
2019-08-23 01:39:05 +02:00
license="Other/Proprietary License",
2019-08-05 04:01:10 +02:00
author="Michael Lazar",
author_email="lazar.michael22@gmail.com",
description="An Experimental Gemini Server",
2020-05-15 06:11:09 +02:00
install_requires=[
2020-05-15 07:11:12 +02:00
"twisted>=20.3.0",
# Requirements below are used by twisted[security]
"service_identity",
"idna",
"pyopenssl",
2020-05-15 06:11:09 +02:00
],
2019-08-05 04:01:10 +02:00
long_description=long_description(),
2019-08-13 03:45:56 +02:00
long_description_content_type="text/markdown",
packages=["jetforce", "jetforce.app"],
py_modules=["jetforce_client"],
entry_points={
"console_scripts": [
"jetforce=jetforce.__main__:main",
"jetforce-client=jetforce_client:run_client",
]
},
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",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)