Skip to content

Commit

Permalink
[Issue #351] ci: Improved setup.py fixed problem with the reading of …
Browse files Browse the repository at this point in the history
…the README.md
  • Loading branch information
scaphilo committed Apr 4, 2024
1 parent 7dd41fc commit f2785cd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from os import open
from setuptools import setup, find_packages
from koalixcrm.version import KOALIXCRM_VERSION

with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()

setup(name='koalix-crm',
version=KOALIXCRM_VERSION,
description='koalixcrm is a tiny and easy to use Customer-Relationship-Management'
' Software (CRM) including tiny and easy to use Accounting Software',
long_description=open('README.md').read(),
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/scaphilo/koalixcrm',
author='Aaron Riedener',
Expand Down

0 comments on commit f2785cd

Please sign in to comment.