Skip to content

Commit 4bc721d

Browse files
committed
Add long description for the PyPI page
1 parent 1e75587 commit 4bc721d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
from setuptools import setup
22

3+
with open('README.md') as f:
4+
long_description = f.read()
35

46
setup(
7+
author='Gunes Acar',
58
name="tbselenium",
69
description="Tor Browser automation with Selenium",
710
keywords=["tor", "selenium", "tor browser"],
8-
version="0.5.1",
9-
url = 'https://github.com/webfp/tor-browser-selenium',
11+
version="0.5.2",
12+
long_description=long_description,
13+
long_description_content_type='text/markdown',
14+
url='https://github.com/webfp/tor-browser-selenium',
1015
packages=["tbselenium", "tbselenium.test"],
1116
install_requires=[
1217
"selenium>=3.14"

0 commit comments

Comments
 (0)