Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
yym68686 committed Jun 25, 2024
1 parent 79c75ee commit f9ed848
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
build
dist
*.egg-info
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
importlib_metadata==7.2.1
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
from pathlib import Path

from setuptools import setup, find_packages

setup(
name="md2tgmd",
version="0.2.4",
description="md2tgmd is a Markdown to Telegram-specific-markdown converter.",
long_description=Path.open(Path("README.md"), encoding="utf-8").read(),
long_description=Path("README.md").open(encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/yym68686/md2tgmd",
project_urls={
'Home-page': 'https://github.com/yym68686/md2tgmd',
},
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=["md2tgmd"]
py_modules=["md2tgmd"],
install_requires=Path.open(Path("requirements.txt"), encoding="utf-8").read().splitlines(),
)

0 comments on commit f9ed848

Please sign in to comment.