File tree Expand file tree Collapse file tree 2 files changed +22
-5
lines changed
Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,21 @@ The command will collect information from GitHub and generate two output files i
4343` packagename_issues.json ` : this file contains information about issues for the repository of interest.
4444` packagename_PRs.json ` : this file contains information associated with pull requests for the repository of interest.
4545
46+ ## Publish command
47+
48+ The ` publish ` command can be used to generate a report website, such
49+ as https://devstats.scientific-python.org , from the downloaded data.
50+
51+ This functionality is still under heavy development.
52+
53+ To try it out, first install the publishing dependencies.
54+
55+ ```
56+ pip install "devstats[publish]"
57+ ```
58+
59+ (or, if you cloned the repository, ` pip install -e ".[publish]" ` .)
60+
4661## Development instructions
4762
4863If you wish to contribute to devstats:
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ version = "0.2rc0.dev0"
88requires-python = " >=3.8"
99description = " Developer tool for scientific Python libraries"
1010license = {file = " LICENSE" }
11- readme = " tREADME .md"
11+ readme = " README .md"
1212maintainers = [
1313 {
name =
" Scientific Python" ,
email =
" [email protected] " }
1414]
@@ -19,16 +19,18 @@ classifiers = [
1919dependencies = [
2020 " click" ,
2121 " requests" ,
22- " jupyter" ,
23- " notebook" ,
24- " numpy" ,
25- " networkx" ,
2622]
2723
2824[project .scripts ]
2925devstats = " devstats.__main__:cli"
3026
3127[project .optional-dependencies ]
28+ publish = [
29+ " jupyter" ,
30+ " notebook" ,
31+ " numpy" ,
32+ " networkx"
33+ ]
3234lint = [" pre-commit == 4.2.0" ]
3335dev = [" changelist == 0.5" ]
3436
You can’t perform that action at this time.
0 commit comments