izzylib/http_server/setup.py
2021-06-07 16:45:29 -04:00

54 lines
1.6 KiB
Python

#!/usr/bin/env python3
from setuptools import setup, find_namespace_packages
requires = [
'argon2-cffi==20.1.0',
'colour==0.1.5',
'Hamlish-Jinja==0.3.3',
'Jinja2==2.11.2',
'Markdown==3.3.3',
'pillow==8.2.0',
'pycryptodome==3.9.9',
'requests==2.25.1',
'sanic==20.12.1',
'Sanic-Cors==0.10.0.post3'
]
setup(
name="IzzyLib HTTP Server",
version='0.6.0',
packages=['izzylib.http_server'],
python_requires='>=3.7.0',
install_requires=requires,
include_package_data=False,
author='Zoey Mae',
author_email='admin@barkshark.xyz',
description='a collection of often-used functions and classes',
keywords='web http server templates argon2 jinja haml',
url='https://git.barkshark.xyz/izaliamae/izzylib',
project_urls={
'Bug Tracker': 'https://git.barkshark.xyz/izaliamae/izzylib/issues',
'Documentation': 'https://git.barkshark.xyz/izaliamae/izzylib/wiki',
'Source Code': 'https://git.barkshark.xyz/izaliamae/izzylib'
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'License :: Co-operative Non-violent Public License (CNPL 6+)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)