-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name = "sciada" | ||
description = "Collection of Scientific Operations" | ||
version = "0.3.0" | ||
long-description = """ | ||
SCI Ada provides a collections of algorithms commonly used for data analysis: | ||
- [SCI.Correlations.*](https://gitlab.com/stcarrez/ada-sci/-/blob/main/src/sci-correlations.ads?ref_type=heads) computes correlations between values, | ||
- [SCI.Occurrences.*](https://gitlab.com/stcarrez/ada-sci/-/blob/main/src/sci-occurrences.ads?ref_type=heads) helps in identifying occurrences of items, | ||
- [SCI.Similarities.*](https://gitlab.com/stcarrez/ada-sci/-/blob/main/src/sci-similarities.ads?ref_type=heads) provides metrics to compute similarities between sets. | ||
- [SCI.Sparse.*](https://gitlab.com/stcarrez/ada-sci/-/blob/main/src/sci-sparse.ads?ref_type=heads) defines sparse arrays. | ||
- [SCI.Statistics.*](https://gitlab.com/stcarrez/ada-sci/-/blob/main/src/sci-statistics.ads?ref_type=heads) defines some classical statistics operations. | ||
- [SCI.Vectorizers.*](https://gitlab.com/stcarrez/ada-sci/-/blob/main/src/sci-vectorizers.ads?ref_type=heads) transforms a list of tokens to a vector. | ||
## Documentation | ||
- [Programmer's Guide](https://ada-sci.readthedocs.io/en/latest/) | ||
""" | ||
|
||
authors = ["[email protected]"] | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["stcarrez"] | ||
licenses = "Apache-2.0" | ||
website = "https://gitlab.com/stcarrez/ada-sci" | ||
tags = ["sci", "scientific", "correlations", "occurrences", "similarities", "statistics"] | ||
|
||
[gpr-externals] | ||
SCIADA_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"] | ||
SCIADA_LIBRARY_TYPE = ["relocatable", "static", "static-pic"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[origin] | ||
commit = "cb814ea356b0b867d674db5684ef766dc8d00c19" | ||
url = "git+https://gitlab.com/stcarrez/ada-sci.git" | ||
|