You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
587 B

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',
version='0.1.0',
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'],
)