Skip to content

Commit

Permalink
Fix long_description, bump to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
epsy committed Jan 24, 2022
1 parent 8d42a49 commit 09f96a8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
#!/usr/bin/env python

import pathlib
from setuptools import setup

here = pathlib.Path(__file__).parent.resolve()

long_description = (here / "README.rst").read_text(encoding='utf-8')


setup(
name='od',
version='2.0.0',
version='2.0.1',
description='Shorthand syntax for building OrderedDicts',
long_description=long_description,
long_description_content_type='text/x-rst',
license='MIT',
url='https://github.com/epsy/od',
author='Yann Kaiser',
Expand Down

0 comments on commit 09f96a8

Please sign in to comment.