File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 1- # this python file uses the following encoding utf-8
21from 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
411setup (
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)
You can’t perform that action at this time.
0 commit comments