diff options
author | Leonard Richardson <leonardr@segfault.org> | 2019-10-06 10:02:07 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2019-10-06 10:02:07 -0400 |
commit | 5b7212298f17a6c3c33f79b49e36a730b45fd19d (patch) | |
tree | 5b104dcaa129aa1b79666daf29a4afc18299132d /setup.py | |
parent | 24fca77a9e156ec77f1bec115199c9be176edcc2 (diff) |
Added section on Python 2 sunsetting.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,12 +3,14 @@ from setuptools import ( find_packages, ) +from bs4 import __version__ + with open("README.md", "r") as fh: long_description = fh.read() setup( name="beautifulsoup4", - version = "4.8.0", + version = __version__, author="Leonard Richardson", author_email='leonardr@segfault.org', url="http://www.crummy.com/software/BeautifulSoup/bs4/", |