from setuptools import setup long_description = """ A simple collection of python packages used in various projects. Anything that I repeatedly implement probably ends up in here. """ setup( name='xenua_tools', version='0.1.1', description='Miscellaneous functions that are sometimes helpful', long_description=long_description, long_description_content_type='text/plain', author='xenua', author_email='python@xenua.me', url='git.julia.network/julia/xenua_tools', license='CNPLv7+', python_requires='>=3.8', packages=['xenua', 'xenua.django'], )