python_skeleton/skeleton/setup.py

13 lines
352 B
Python
Raw Normal View History

2021-01-13 16:10:29 +01:00
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"]
)