Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
infodavide committed Apr 1, 2024
1 parent 0c7c4c3 commit 9a7812b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
"""
Learn more: https://github.com/infodavide/enedis_data_connect
"""
import markdown # pip install markdown
from bs4 import BeautifulSoup
from setuptools import setup, find_packages

with open('README.md', encoding='utf-8') as f:
html = markdown.markdown(f.read())
soup = BeautifulSoup(html, features='html.parser')
readme_content = soup.get_text()
readme_content = f.read()

with open('LICENSE', encoding='utf-8') as f:
license_content = f.read()
Expand Down

0 comments on commit 9a7812b

Please sign in to comment.