-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated deployment to update software database 2024-05-15
- Loading branch information
github-actions
committed
May 15, 2024
1 parent
162cc5f
commit 7d07ac6
Showing
55 changed files
with
37,124 additions
and
33,320 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"Python": 6032, | ||
"R": 2244, | ||
"Python": 6050, | ||
"R": 2245, | ||
"Cpp": 443, | ||
"Js": 1711, | ||
"Go": 246 | ||
|
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,9 +1,9 @@ | ||
{ | ||
"python_deps": 4977, | ||
"python_deps": 4991, | ||
"cpp_deps": 443, | ||
"r_deps": 2244, | ||
"r_deps": 2245, | ||
"js_deps": 1711, | ||
"go_deps": 246, | ||
"total_repos": 5531, | ||
"total_parsed": 2804 | ||
"total_repos": 5547, | ||
"total_parsed": 2813 | ||
} |
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,20 @@ | ||
--- | ||
title: github/AnkitBarik/planetMagFields | ||
layout: repo | ||
tipue_search_active: true | ||
exclude_from_search: true | ||
--- | ||
# Software Credit | ||
|
||
|Manager|Name|Credit| | ||
|-------|----|------| | ||
|setup.py|github/AnkitBarik/planetMagFields|0.01| | ||
|pypi|[numpy](https://www.numpy.org)|0.007| | ||
|pypi|[scipy](https://www.scipy.org)|0.003| | ||
|pypi|[matplotlib](https://matplotlib.org)|0.003| | ||
|
||
|
||
> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. | ||
|
||
- Generated by [CiteLang](https://github.com/vsoch/citelang) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
{ | ||
"setup.py": { | ||
"github/AnkitBarik/planetMagFields": { | ||
"credit": 0.01, | ||
"url": null | ||
} | ||
}, | ||
"pypi": { | ||
"numpy": { | ||
"credit": 0.006567, | ||
"url": "https://www.numpy.org" | ||
}, | ||
"scipy": { | ||
"credit": 0.0033000000000000004, | ||
"url": "https://www.scipy.org" | ||
}, | ||
"matplotlib": { | ||
"credit": 0.0033000000000000004, | ||
"url": "https://matplotlib.org" | ||
} | ||
} | ||
} |
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,47 @@ | ||
import os | ||
import codecs | ||
import setuptools | ||
|
||
|
||
# https://packaging.python.org/guides/single-sourcing-package-version/ | ||
def read(rel_path): | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
with codecs.open(os.path.join(here, rel_path), 'r') as fp: | ||
return fp.read() | ||
|
||
|
||
def get_version(rel_path): | ||
for line in read(rel_path).splitlines(): | ||
if line.startswith('__version__'): | ||
delim = '"' if '"' in line else "'" | ||
return line.split(delim)[1] | ||
else: | ||
raise RuntimeError("Unable to find version string.") | ||
|
||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
name = 'planetMagFields' | ||
version = get_version('planetmagfields/__init__.py') | ||
description = '''Routines to plot magnetic fields | ||
of planets in our solar system ''' | ||
copyright = '2023 Ankit Barik' | ||
|
||
|
||
setuptools.setup( | ||
name=name, | ||
version=version, | ||
author='Barik, Ankit', | ||
author_email='abarik@jhu.edu ', | ||
packages=['planetmagfields'], | ||
description=description, | ||
long_description=long_description, | ||
install_requires=[ | ||
'numpy>=1.18', | ||
'scipy>=1.5.4', | ||
'matplotlib>=3', | ||
], | ||
package_data={'planetmagfields': ['data/*']}, | ||
include_package_data=True, | ||
) |
63 changes: 63 additions & 0 deletions
63
_repos/github/Bioinformatics-Munich/scas_dashboard/README.md
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,63 @@ | ||
--- | ||
title: github/Bioinformatics-Munich/scas_dashboard | ||
layout: repo | ||
tipue_search_active: true | ||
exclude_from_search: true | ||
--- | ||
# Software Credit | ||
|
||
|Manager|Name|Credit| | ||
|-------|----|------| | ||
|pypi|[pyyaml](https://pyyaml.org/)|0.109| | ||
|pypi|[psycopg2-binary](https://psycopg.org/)|0.099| | ||
|pypi|[gunicorn](https://gunicorn.org)|0.099| | ||
|pypi|[psycopg2](https://psycopg.org/)|0.099| | ||
|pypi|[networkx](https://networkx.org/)|0.099| | ||
|pypi|[python-dateutil](https://github.com/dateutil/dateutil)|0.099| | ||
|pypi|[tzdata](https://github.com/python/tzdata)|0.054| | ||
|pypi|[bcrypt](https://github.com/pyca/bcrypt/)|0.029| | ||
|pypi|[sqlparse](https://github.com/andialbrecht/sqlparse)|0.029| | ||
|pypi|[importlib-resources](https://pypi.org/project/importlib-resources)|0.024| | ||
|pypi|[pytest](https://pypi.org/project/pytest)|0.02| | ||
|pypi|[packaging](https://pypi.org/project/packaging)|0.014| | ||
|pypi|[pandas](https://pypi.org/project/pandas)|0.014| | ||
|pypi|[numpy](https://pypi.org/project/numpy)|0.014| | ||
|pypi|[django](https://www.djangoproject.com/)|0.011| | ||
|pypi|[typing-extensions](https://pypi.org/project/typing-extensions)|0.011| | ||
|pypi|[djangorestframework](https://www.django-rest-framework.org/)|0.011| | ||
|requirements.txt|github/Bioinformatics-Munich/scas_dashboard|0.01| | ||
|pypi|[argon2-cffi](https://argon2-cffi.readthedocs.io/)|0.01| | ||
|pypi|[asgiref](https://github.com/django/asgiref/)|0.01| | ||
|pypi|[swagger-spec-validator](https://pypi.org/project/swagger-spec-validator)|0.01| | ||
|pypi|[coreschema](https://pypi.org/project/coreschema)|0.01| | ||
|pypi|[coreapi](https://pypi.org/project/coreapi)|0.01| | ||
|pypi|[uritemplate](https://pypi.org/project/uritemplate)|0.01| | ||
|pypi|[pytz](https://pypi.org/project/pytz)|0.01| | ||
|pypi|[inflection](https://pypi.org/project/inflection)|0.01| | ||
|pypi|[mypy](http://www.mypy-lang.org/)|0.01| | ||
|pypi|[ipython](https://pypi.org/project/ipython)|0.009| | ||
|pypi|[coverage](https://pypi.org/project/coverage)|0.006| | ||
|pypi|[backports.zoneinfo](https://github.com/pganssle/zoneinfo)|0.005| | ||
|pypi|[pytest-asyncio](https://pypi.org/project/pytest-asyncio)|0.005| | ||
|pypi|[pytest-cov](https://pypi.org/project/pytest-cov)|0.005| | ||
|pypi|[tzlocal](https://pypi.org/project/tzlocal)|0.005| | ||
|pypi|[jinja2](https://pypi.org/project/jinja2)|0.005| | ||
|pypi|[cffi](https://pypi.org/project/cffi)|0.005| | ||
|pypi|[types-pytz](https://pypi.org/project/types-pytz)|0.005| | ||
|pypi|[furo](https://pypi.org/project/furo)|0.002| | ||
|pypi|[sphinx-notfound-page](https://pypi.org/project/sphinx-notfound-page)|0.002| | ||
|pypi|[sphinx](https://pypi.org/project/sphinx)|0.002| | ||
|pypi|[hypothesis](https://pypi.org/project/hypothesis)|0.002| | ||
|pypi|[tomli](https://pypi.org/project/tomli)|0.002| | ||
|pypi|[cogapp](https://pypi.org/project/cogapp)|0.002| | ||
|pypi|[pre-commit](https://pypi.org/project/pre-commit)|0.002| | ||
|pypi|[dataclasses](https://pypi.org/project/dataclasses)|0.002| | ||
|pypi|[argon2-cffi-bindings](https://pypi.org/project/argon2-cffi-bindings)|0.002| | ||
|pypi|[rpy2](https://rpy2.github.io)|0.001| | ||
|pypi|[drf-yasg](https://github.com/axnsan12/drf-yasg)|0.001| | ||
|
||
|
||
> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed. | ||
|
||
- Generated by [CiteLang](https://github.com/vsoch/citelang) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.