18 lines
505 B
Python
18 lines
505 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""Setup script"""
|
|
|
|
import setuptools
|
|
setuptools.setup(
|
|
scripts=['__project_codename__/__project_codename__.py'],
|
|
author="__author__",
|
|
version='__version__',
|
|
name='__project_codename__',
|
|
author_email="__author_email__",
|
|
url="__url__",
|
|
description="__description__",
|
|
long_description="README.md",
|
|
long_description_content_type="text/markdown",
|
|
license="__license__",
|
|
# keywords=["my", "script", "does", "things"]
|
|
)
|