python_skeleton/skeleton/setup.py

15 lines
437 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__',
2022-06-14 08:42:54 +02:00
name='__project_codename__',
author_email="__author_email__",
url="__url__",
description="__description__",
2022-06-14 08:42:54 +02:00
long_description="README.md",
long_description_content_type="text/markdown",
license="__license__",
#keywords=["my", "script", "does", "things"]
)