|
1 | 1 | from setuptools import setup |
2 | 2 |
|
3 | | -with open("README.md", "r", encoding='utf-8') as fh: |
4 | | - long_description = fh.read() |
5 | | - |
6 | | -with open("requirements.txt", "r") as fr: |
7 | | - requirements = fr.read().splitlines() |
8 | | - |
9 | | -setup( |
10 | | - name='github-stats-pages', |
11 | | - version='0.4.8', |
12 | | - packages=['github_stats_pages'], |
13 | | - scripts=['scripts/get_repo_list', |
14 | | - 'scripts/gts_run_all_repos', |
15 | | - 'scripts/merge-csv.sh', |
16 | | - 'scripts/make_stats_plots'], |
17 | | - include_package_data=True, |
18 | | - package_data={'github_stats_pages': ['templates/*']}, |
19 | | - url='https://github.com/astrochun/github-stats-pages', |
20 | | - license='MIT', |
21 | | - author='Chun Ly', |
22 | | - |
23 | | - description='Retrieve statistics for a user\'s repositories and populate the information onto a GitHub static page', |
24 | | - long_description=long_description, |
25 | | - long_description_content_type='text/markdown', |
26 | | - install_requires=requirements, |
27 | | - python_requires='>=3.7', |
28 | | - classifiers=[ |
29 | | - 'Development Status :: 4 - Beta', |
30 | | - 'Programming Language :: Python :: 3 :: Only', |
31 | | - 'Programming Language :: Python :: 3.7', |
32 | | - 'Programming Language :: Python :: 3.8', |
33 | | - 'Programming Language :: Python :: 3.9' |
34 | | - ] |
35 | | -) |
| 3 | +setup() |
0 commit comments