-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
54 lines (51 loc) · 1.53 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[metadata]
name = github-stats-pages
version = attr: github_stats_pages.__version__
description = "Retrieve statistics for a user's repositories and populate the information onto a GitHub static page"
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files =
LICENSE
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
url = https://github.com/astrochun/github-stats-pages
project_urls =
Tracker = https://github.com/astrochun/github-stats-pages/issues
Source = https://github.com/astrochun/github-stats-pages
Documentation = https://github.com/astrochun/github-stats-pages/blob/main/README.md
author = Chun Ly
author_email = astro.chun@gmail.com
maintainer = Chun Ly
maintainer_email = astro.chun@gmail.com
[options]
python_requires = >=3.7
zip_safe = False
include_package_data = True
install_requires =
requests >= 2.22.0
pandas == 1.2.4
github-traffic-stats == 1.2.0
Jinja2 == 3.0.3
bokeh == 2.3.0
markdown == 3.3.4
PyGithub == 1.55
tabulate == 0.8.7
rich >= 12.4.1, <13.0.0
scripts =
scripts/get_repo_list
scripts/gts_run_all_repos
scripts/make_stats_plots
scripts/merge_csv
#package_dir=
# =github_stats_pages
packages =
github_stats_pages
[options.package_data]
* = templates/*
[options.extras_require]
test = pytest>=7.1.2, <8.0.0; pytest-cov>=3.0.0, <4.0.0