Skip to content

Commit 4515eb9

Browse files
author
alireza sharifi
committed
setup.py ready for pypi
1 parent 38cb46c commit 4515eb9

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

setup.py

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1-
# this python file uses the following encoding utf-8
21
from setuptools import setup, find_packages
2+
from pathlib import Path
3+
4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "README.md").read_text()
6+
7+
project_urls = {
8+
'Github': 'https://github.com/adamcupial/lighthouse-python',
9+
}
310

411
setup(
5-
name='lighthouse',
6-
version='1.0.2',
7-
description='Lightouse runner',
12+
name='lighthouse_python',
13+
version='1.0.3',
14+
description='Lighthouse runner is a Python package that wraps the Lighthouse tool for easy integration into Python projects.',
815
author='Adam Cupial',
916
author_email='cupial.adam@gmail.com',
10-
url='n/a',
17+
project_urls=project_urls,
1118
packages=find_packages(),
1219
install_requires=[
1320
'tqdm>=4.30',
14-
]
21+
],
22+
long_description=long_description,
23+
long_description_content_type='text/markdown'
1524
)

0 commit comments

Comments
 (0)