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

19 lines
369 B
Python

from setuptools import setup
#import socials_util
setup(
name='socials_util',
version='0.1.0',
description='Stuff',
author='Stuff',
author_email='me@example.org',
url='example.org',
packages=['socials_util'],
install_requires=['enforce-typing'],
keywords=[],
classifiers=[],
include_package_data=True,
zip_safe=False
)