python_skeleton/skeleton/setup.py
2021-01-13 17:58:27 +02:00

12 lines
352 B
Python

import setuptools
setuptools.setup(
scripts=['__project_codename__/__project_codename__.py'],
author="__author__",
version='__version__',
name='__project_codenane__',
author_email="__author_email__",
url="__url__",
description="__description__",
license="__license__",
#keywords=["my", "script", "does", "things"]
)