diff options
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/", |