We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dd41fc commit f2785cdCopy full SHA for f2785cd
setup.py
@@ -1,12 +1,14 @@
1
-from os import open
2
from setuptools import setup, find_packages
3
from koalixcrm.version import KOALIXCRM_VERSION
4
+with open("README.md", "r", encoding="utf-8") as readme_file:
5
+ long_description = readme_file.read()
6
+
7
setup(name='koalix-crm',
8
version=KOALIXCRM_VERSION,
9
description='koalixcrm is a tiny and easy to use Customer-Relationship-Management'
10
' Software (CRM) including tiny and easy to use Accounting Software',
- long_description=open('README.md').read(),
11
+ long_description=long_description,
12
long_description_content_type='text/markdown',
13
url='http://github.com/scaphilo/koalixcrm',
14
author='Aaron Riedener',
0 commit comments