19 lines
369 B
Python
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
|
||
|
)
|