You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
604 B
19 lines
604 B
from setuptools import setup |
|
|
|
from os import path |
|
this_directory = path.abspath(path.dirname(__file__)) |
|
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
|
long_description = f.read() |
|
|
|
setup(name='ycat', |
|
version='1', |
|
description='display yaml in flat format', |
|
long_description=long_description, |
|
long_description_content_type='text/markdown', |
|
url='https://git.osuv.de/m/ycat', |
|
author='Markus Bergholz', |
|
author_email='markuman@gmail.com ', |
|
license='WTFPL', |
|
packages=['ycat'], |
|
scripts=['bin/ycat'], |
|
zip_safe=True)
|
|
|