mirror of
https://github.com/System-End/2024-Advent-of-Code.git
synced 2026-04-19 18:35:12 +00:00
11 lines
No EOL
291 B
Python
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
|
|
) |