1
0
socials-util/setup.py
2023-12-03 22:16:25 +01:00

17 lines
437 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'],
keywords=[],
classifiers=[],
include_package_data=True,
zip_safe=False
)