9 lines
243 B
Python
9 lines
243 B
Python
from setuptools import setup
|
|
|
|
setup(name='master',
|
|
version='0.1.0',
|
|
author='Tobias Eidelpes',
|
|
author_email='e1527193@student.tuwien.ac.at',
|
|
packages=['code'],
|
|
description='An awesome package that does something')
|