Skip to content

Commit

Permalink
Merge 4b6daf1 into d0b74f4
Browse files Browse the repository at this point in the history
  • Loading branch information
Yquetzal committed Jun 26, 2020
2 parents d0b74f4 + 4b6daf1 commit b309d1f
Show file tree
Hide file tree
Showing 14 changed files with 610 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -100,3 +100,6 @@ docs/_templates
.DS_Store
.idea/
*.ipynb

#conda stuff
to_conda/outputdir
47 changes: 47 additions & 0 deletions to_conda/aslpaw/meta.yaml
@@ -0,0 +1,47 @@
{% set name = "aslpaw" %}
{% set version = "2.0.1" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
git_url: https://github.com/fsssosei/ASLPAw

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- count-dict >=1.0.3
- multivalued-dict >=1.7.3
- networkx >=2.4
- pip
- python
- scikit-learn >=0.21.3
- shuffle-graph >=1.1.2
run:
- count-dict >=1.0.3
- multivalued-dict >=1.7.3
- networkx >=2.4
- python
- scikit-learn >=0.21.3
- shuffle-graph >=1.1.2

test:
imports:
- ASLPAw_package

about:
home: "https://github.com/fsssosei/ASLPAw"
license: "GNU Affero General Public v3"
license_family: "AGPL"
license_file: ""
summary: "Adaptive overlapping community discovery algorithm package in python."
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- your-github-id-here
44 changes: 44 additions & 0 deletions to_conda/bimlpa/meta.yaml
@@ -0,0 +1,44 @@
{% set name = "bimlpa" %}
{% set version = "0.1.2" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "b49b4b3010416d824b9b0f561e5a8afae41dd1692503113fd9c46eb8cf86dda5"

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- matplotlib
- networkx
- pip
- python
- scikit-learn
run:
- matplotlib
- networkx
- python
- scikit-learn

test:
imports:
- BiMLPA

about:
home: "https://github.com/hbkt/BiMLPA"
license: "BSD"
license_family: "BSD"
license_file: ""
summary: "Community detection in bipartite networks using multi-label propagation algorithm"
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- your-github-id-here
72 changes: 72 additions & 0 deletions to_conda/cdlib/meta.yaml
@@ -0,0 +1,72 @@
{% set name = "cdlib" %}
{% set version = "0.2" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
git_url: https://github.com/GiulioRossetti/cdlib.git

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
build:
- setuptools

host:
- python
- future
#- pquality
#- bimlpa
#- omega_index_py3
#- eva_lcd
#- demon
#- nf1
## - pulp
## - karateclub
##- ASLPAw
run:
- python
- numpy
- future
- matplotlib
- scikit-learn
- tqdm
- networkx
- python-louvain
- scipy
- seaborn
- pandas
- pquality
- bimlpa
- omega_index_py3
- eva_lcd
- demon
- nf1
- pulp
- ASLPAw
- karateclub
#- leiden, LFRbenchmark name changded
test:
imports:
- cdlib
- cdlib.algorithms
- cdlib.evaluation
- cdlib.viz

about:
home: "https://github.com/GiulioRossetti/cdlib"
license: "BSD"
license_family: "BSD"
license_file: ""
summary: "Community detection library"
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- "https://github.com/GiulioRossetti/cdlib"

39 changes: 39 additions & 0 deletions to_conda/count-dict/meta.yaml
@@ -0,0 +1,39 @@
{% set name = "count-dict" %}
{% set version = "1.1.1" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
git_url: https://github.com/fsssosei/count_dict
#url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
#sha256: "9571156e9700705da017244905db6d9a54f7fc55584e04c331d5d8621a67dd5a"

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- pip
- python
run:
- python

test:
imports:
- count_dict_package

about:
home: "https://github.com/fsssosei/count_dict"
license: "GNU Affero General Public v3"
license_family: "AGPL"
license_file: ""
summary: "Count dictionary package in python."
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- your-github-id-here
44 changes: 44 additions & 0 deletions to_conda/demon/meta.yaml
@@ -0,0 +1,44 @@
{% set name = "demon" %}
{% set version = "2.0.5" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "311ffe2d4ab5e1486fc4cd8cab6255b23f5b4aff7b12806e5766048bb6bbdcd0"

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- future
- networkx
- pip
- python
run:
- future
- networkx
- python
- tqdm

test:
imports:
- demon
- demon.alg

about:
home: "https://github.com/GiulioRossetti/DEMON"
license: "BSD"
license_family: "BSD"
license_file: ""
summary: "Community Discovery algorithm"
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- your-github-id-here
42 changes: 42 additions & 0 deletions to_conda/eva_lcd/meta.yaml
@@ -0,0 +1,42 @@
{% set name = "eva_lcd" %}
{% set version = "0.1.0" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "07bf1928ff03b12970f3e1f70bd9883c0bb13c9b8ae3b9bf3dfd5d455f5af0de"

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- networkx
- numpy
- pip
- python
run:
- networkx
- numpy
- python

test:
imports:
- Eva

about:
home: "https://github.com/GiulioRossetti/eva"
license: "BSD"
license_family: "BSD"
license_file: ""
summary: "Eva: Community Discovery for labeled graphs"
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- your-github-id-here
76 changes: 76 additions & 0 deletions to_conda/karateclub/meta.yaml
@@ -0,0 +1,76 @@
{% set name = "karateclub" %}
{% set version = "1.0.7" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "7387b6f0190b1182169c871b4f4f0a245aac6fc3379f56e8e27f11a1c353a10f"

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- gensim
- networkx
- numpy 1.17
- pandas
- pip
- pygsp
- python
- python-louvain
- scipy
- six
- scikit-learn
- tqdm
- pytest-runner

run:
- gensim
- networkx
- numpy 1.17
- pandas
- pygsp
- python
- python-louvain
- scipy
- six
- scikit-learn
- tqdm

test:
imports:
- karateclub
- karateclub.community_detection
- karateclub.community_detection.non_overlapping
- karateclub.community_detection.overlapping
- karateclub.dataset
- karateclub.graph_embedding
- karateclub.node_embedding
- karateclub.node_embedding.attributed
- karateclub.node_embedding.meta
- karateclub.node_embedding.neighbourhood
- karateclub.node_embedding.structural
- karateclub.utils
requires:
- mock
- pytest
- pytest-cov
- pytest-runner

about:
home: "https://github.com/benedekrozemberczki/karateclub"
license: "MIT"
license_family: "MIT"
license_file: ""
summary: "A general purpose library for community detection, network embedding, and graph mining research."
doc_url: ""
dev_url: ""

extra:
recipe-maintainers:
- your-github-id-here

0 comments on commit b309d1f

Please sign in to comment.