Skip to content

Commit

Permalink
fix: readme in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Jun 7, 2021
1 parent b41490d commit 9751b96
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import os
import re
import sys

from glob import glob
from setuptools import setup, find_packages


with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()


_src_folder = 'src'
_pkg_name = 'cms'

Expand All @@ -24,6 +30,8 @@ def get_requirements(fname='requirements.txt'):
name="unicms",
version='0.19.0',
description="uniCMS is a Django Web Content Management System",
long_description=README,
long_description_content_type='text/markdown',
author='Giuseppe De Marco, Francesco Filicetti',
author_email='giuseppe.demarco@unical.it, francesco.filicetti@unical.it',
license="Apache 2.0",
Expand Down

0 comments on commit 9751b96

Please sign in to comment.