File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
{{cookiecutter.project_shortname}} Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 22
33{{cookiecutter.project_name}} is a Dash component library.
44
5+ {{cookiecutter.description}}
6+
57Get started with:
681 . Install Dash and its dependencies: https://dash.plotly.com/installation
792 . Run ` python usage.py `
Original file line number Diff line number Diff line change 11import json
2- import os
32from setuptools import setup
3+ from pathlib import Path
44
5-
5+ here = Path ( __file__ ). parent
66with open ('package.json' ) as f :
77 package = json .load (f )
8+ long_description = (here / 'README.md' ).read_text ()
89
910package_name = package ["name" ].replace (" " , "_" ).replace ("-" , "_" )
1011
1617 include_package_data = True ,
1718 license = package ['license' ],
1819 description = package .get ('description' , package_name ),
20+ long_description = long_description ,
21+ long_description_content_type = "text/markdown" ,
1922 install_requires = [],
2023 classifiers = [
2124 'Framework :: Dash' ,
You can’t perform that action at this time.
0 commit comments