This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Basically make sure that license information is properly preserved in metadata, source and built distributions. Also, start having a .gitignore with common stuff. Reviewed By: adamlerer Differential Revision: D15166521 fbshipit-source-id: 3b64e208829f3983fc2ad589c6608b584e6b40ac
- Loading branch information
1 parent
01fc3bd
commit 8a3cff8
Showing
8 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*~ | ||
build/ | ||
data/ | ||
dist/ | ||
model/ | ||
*.pyc | ||
**/__pycache__/ | ||
torchbiggraph.egg-info/ | ||
venv/ |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
global-include LICENSE* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Include license in the wheel distribution. | ||
[metadata] | ||
license_files = LICENSE | ||
license_files = | ||
LICENSE | ||
torchbiggraph/examples/LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.dev1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import pkg_resources | ||
|
||
__version__ = pkg_resources.resource_string("torchbiggraph", "VERSION.txt").decode("utf-8").strip() |
File renamed without changes.