#!/usr/bin/env python3 from setuptools import setup import sys from IzzyLib import __version__ as v version = '.'.join([str(i) for i in v]) setup( name="IzzyLib", version=version, packages=['IzzyLib'], python_requires='>=3.6.0', install_requires=[req.replace('\n', '') for req in open('requirements.txt').readlines()], 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 database postgresql', 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 :: 5 - Production/Stable', 'Intended Audience :: Information Technology', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Topic :: Internet :: WWW/HTTP' ] )