diff --git a/README.md b/README.md index 0f81b3b..31394fa 100644 --- a/README.md +++ b/README.md @@ -83,4 +83,9 @@ Prints some cool stats about the wiki: - `commits made` - `total lines` (non-empty lines in `.md` files) -- `largest files` - paths to the top 3 longest `.md` files \ No newline at end of file +- `largest files` - paths to the top 3 longest `.md` files + + +## Developing + +I use [poetry](https://python-poetry.org/) for building/publishing the package. Read their docs. \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index 52e7625..0000000 --- a/setup.py +++ /dev/null @@ -1,35 +0,0 @@ -from setuptools import setup, find_packages - -# read the contents of your README file -from os import path - -this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, 'README.md')) as f: - long_description = f.read() - -setup( - name="seckerwiki", - version="1.1.4", - packages=find_packages(), - author="Benjamin Secker", - author_email="Benjamin.secker@gmail.com", - description="Markdown wiki CLI and scripts", - long_description=long_description, - long_description_content_type='text/markdown', - keywords="Markdown,wiki,scripts,cli", - url="https://github.com/bsecker/wiki", - license='MIT', - python_requires=">=3.6", - install_requires=[ - 'PyInquirer', - 'pyyaml', - 'pdf2image==1.5.4', - 'Pillow==6.2.2', - 'requests' - ], - entry_points={ - "console_scripts": [ - 'wiki = seckerwiki.wiki:main', - ] - } -)