Skip to content

Commit

Permalink
Update long description for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
julvo committed Jun 3, 2021
1 parent cbcf901 commit 6806bbe
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
from setuptools import setup
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name = 'reloading',
packages = ['reloading'],
version = '1.1.0',
name='reloading',
packages=['reloading'],
version='1.1.1',
license='MIT',
description = 'Reloads source code of a running program without losing state',
author = 'Julian Vossen',
author_email = '[email protected]',
url = 'https://github.com/julvo/reloading',
download_url = 'https://github.com/julvo/reloading/archive/v1.1.0.tar.gz',
keywords = ['reload', 'reloading', 'refresh', 'loop', 'decorator'],
description='Reloads source code of a running program without losing state',
long_description=long_description,
long_description_content_type='text/markdown',
author='Julian Vossen',
author_email='[email protected]',
url='https://github.com/julvo/reloading',
download_url='https://github.com/julvo/reloading/archive/v1.1.1.tar.gz',
keywords=['reload', 'reloading', 'refresh', 'loop', 'decorator'],
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit 6806bbe

Please sign in to comment.