29 lines
719 B
Python
29 lines
719 B
Python
|
|
from setuptools import setup, find_packages
|
|
from kontor.core.version import get_version
|
|
|
|
VERSION = get_version()
|
|
|
|
f = open('README.md', 'r')
|
|
LONG_DESCRIPTION = f.read()
|
|
f.close()
|
|
|
|
setup(
|
|
name='kontor',
|
|
version=VERSION,
|
|
description='Kontor CLI',
|
|
long_description=LONG_DESCRIPTION,
|
|
long_description_content_type='text/markdown',
|
|
author='Thomas Peetz',
|
|
author_email='thomas.peetz@thpeetz.de',
|
|
url='https://gitlab.com/tpeetz/kontor/',
|
|
license='unlicensed',
|
|
packages=find_packages(exclude=['ez_setup', 'tests*']),
|
|
package_data={'kontor': ['templates/*']},
|
|
include_package_data=True,
|
|
entry_points="""
|
|
[console_scripts]
|
|
kontor = kontor.main:main
|
|
""",
|
|
)
|