Skip to content

Commit

Permalink
Fix pygit2 installation error on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
soimkim committed Oct 17, 2023
1 parent e4eb4c9 commit 7ef683c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", ],
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", ],
install_requires=required,
package_data={'fosslight_util': ['resources/frequentLicenselist.json', 'resources/licenses.json']},
include_package_data=True,
extras_require={":python_version<'3.7'": ["pygit2==1.6.1"],
":python_version>'3.6'": ["pygit2==1.10.1"]},
":python_version>='3.7'": ["pygit2>=1.10.1"]},
entry_points={
"console_scripts": [
"fosslight_download = fosslight_util.download:main",
Expand Down

0 comments on commit 7ef683c

Please sign in to comment.