8 lines
97 B
Python
8 lines
97 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='aoc',
|
|
version='0.1',
|
|
packages=['aoc',],
|
|
)
|