1
0
socials-util/setup.py
Jon Michael Aanes 1d04d84788
All checks were successful
Python Package / Package (push) Has been skipped
Use aenum to allow for third party extensions.
2023-12-19 23:14:46 +01:00

17 lines
446 B
Python

from setuptools import setup
setup(
name='socials_util',
version='0.1.0',
description='Small utility used by one-page-internet for social site detection.',
author='Jmaa',
author_email='jonjmaa@gmail.com',
url='https://gitfub.space/Jmaa/socials-util',
packages=['socials_util'],
install_requires=['enforce-typing', 'aenum'],
keywords=[],
classifiers=[],
include_package_data=True,
zip_safe=False
)