pymhtml/setup.py
2021-07-23 03:00:36 -04:00

34 lines
1 KiB
Python
Executable file

#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='PyMHTML',
version='0.1.0',
packages=find_packages(),
python_requires='>=3.3.0',
include_package_data=False,
author='Zoey Mae',
author_email='admin@barkshark.xyz',
description='Simple MHTML parser and exporter',
keywords='web html mhtml',
url='https://git.barkshark.xyz/izaliamae/pymhtml',
project_urls={
'Bug Tracker': 'https://git.barkshark.xyz/izaliamae/pymhtml/issues',
'Documentation': 'https://git.barkshark.xyz/izaliamae/pymhtml/wiki',
'Source Code': 'https://git.barkshark.xyz/izaliamae/pymhtml'
},
classifiers=[
'License :: License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.3',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)