-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
57 lines (50 loc) · 1.5 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""
Flask-Gopher
------------
A Flask extension to support the Gopher Protocol
"""
import codecs
import setuptools
from version import __version__ as version
def long_description():
with codecs.open("README.md", encoding="utf8") as f:
return f.read()
setuptools.setup(
name="Flask-Gopher",
version=version,
url="https://github.com/michael-lazar/flask-gopher",
license="GPL-3.0",
author="Michael Lazar",
author_email="[email protected]",
description="A Flask extension to support the Gopher Protocol",
long_description=long_description(),
long_description_content_type="text/markdown",
packages=["flask_gopher"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"Flask>=2.1",
# pyfiglet v0.8.0 removes a bunch of fonts due to licensing issues :(
"pyfiglet<=0.7.6",
"tabulate",
"pyopenssl",
],
extras_require={
"test": [
"pytest",
"mypy",
"types-tabulate",
],
},
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",
],
)