-
-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Varsha U N <[email protected]> Signed-off-by: Varsha U N <[email protected]> Signed-off-by: Varsha U N <[email protected]>
- Loading branch information
Showing
4 changed files
with
72 additions
and
0 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
32 changes: 32 additions & 0 deletions
32
...gedcode/data/pypi/pyproject-toml/standard/private-classifier-pyproject.toml-expected.json
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,32 @@ | ||
[ | ||
{ | ||
"datasource_id": "pypi_pyproject_toml", | ||
"type": "pypi", | ||
"primary_language": "Python", | ||
"name": "titanic_ml", | ||
"version": "0.1.0", | ||
"extracted_license_statement": null, | ||
"description": "titanic_ml example package", | ||
"keywords": [], | ||
"parties": [ | ||
{ | ||
"type": "author", | ||
"name": "Niels Zeilemaker", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"dependencies": [ | ||
{ | ||
"dependency": "pyspark[ml]", | ||
"version": "" | ||
}, | ||
{ | ||
"dependency": "sklearn", | ||
"version": "" | ||
} | ||
], | ||
"is_private": true, | ||
"extra_data": {}, | ||
"urls": {} | ||
} | ||
] |
29 changes: 29 additions & 0 deletions
29
...s/packagedcode/data/pypi/pyproject-toml/standard/python-private-classifier/pyproject.toml
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,29 @@ | ||
#Taken from : https://xebia.com/blog/minimal-pyproject-toml-example/ | ||
|
||
[project] | ||
name = "titanic_ml" | ||
description = "titanic_ml example package" | ||
version = "0.1.0" | ||
authors = [ | ||
{ name = "Niels Zeilemaker", email = "[email protected]" } | ||
] | ||
dependencies = [ | ||
"pyspark[ml]", | ||
"sklearn" | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Private :: Do Not Upload" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"tox", | ||
"pre-commit", | ||
"bump2version" | ||
] | ||
|
||
[build-system] | ||
build-backend = "flit_core.buildapi" | ||
requires = ["flit_core >=3.2,<4"] |
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