2024-Advent-of-Code/AOC_Helpers/setup.py
2024-12-03 11:51:03 -07:00

11 lines
No EOL
291 B
Python

from setuptools import setup, find_packages
setup(
name='aoc_helpers',
version='0.1',
packages=find_packages(),
description='Helper functions for Advent of Code',
author='Elliot',
author_email='captianexpo@gmail.com',
# Add any other necessary information here
)