2021-01-13 16:10:29 +01:00
|
|
|
import setuptools
|
2021-01-13 16:58:27 +01:00
|
|
|
setuptools.setup(
|
|
|
|
scripts=['__project_codename__/__project_codename__.py'],
|
|
|
|
author="__author__",
|
|
|
|
version='__version__',
|
2022-06-14 08:42:54 +02:00
|
|
|
name='__project_codename__',
|
2021-01-13 16:58:27 +01:00
|
|
|
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",
|
2021-01-13 16:58:27 +01:00
|
|
|
license="__license__",
|
|
|
|
#keywords=["my", "script", "does", "things"]
|
|
|
|
)
|