2023-12-03 21:04:16 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='socials_util',
|
|
|
|
version='0.1.0',
|
2023-12-03 21:16:25 +00:00
|
|
|
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',
|
2023-12-03 21:04:16 +00:00
|
|
|
packages=['socials_util'],
|
2023-12-19 22:08:54 +00:00
|
|
|
install_requires=['enforce-typing', 'aenum'],
|
2023-12-03 21:04:16 +00:00
|
|
|
keywords=[],
|
|
|
|
classifiers=[],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False
|
|
|
|
)
|