netective 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- netective-0.0.2/PKG-INFO +14 -0
- netective-0.0.2/README.rst +15 -0
- netective-0.0.2/pyproject.toml +35 -0
- netective-0.0.2/setup.cfg +7 -0
- netective-0.0.2/setup.py +25 -0
- netective-0.0.2/src/netective/__init__.py +0 -0
- netective-0.0.2/src/netective/implementation.py +1 -0
- netective-0.0.2/src/netective.egg-info/PKG-INFO +14 -0
- netective-0.0.2/src/netective.egg-info/SOURCES.txt +12 -0
- netective-0.0.2/src/netective.egg-info/dependency_links.txt +1 -0
- netective-0.0.2/src/netective.egg-info/entry_points.txt +2 -0
- netective-0.0.2/src/netective.egg-info/requires.txt +10 -0
- netective-0.0.2/src/netective.egg-info/top_level.txt +1 -0
netective-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: netective
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Use structural and standard performance metrics to assess network inference
|
|
5
|
+
Author-email: Juan Escorcia <juanesscorcia@gmail.com>, Julio Freyre <jfreyreg@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/JuanEscorcia/netective.git
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Provides-Extra: test
|
|
13
|
+
Provides-Extra: lint
|
|
14
|
+
Provides-Extra: cov
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.. image:: ./assets/on_black.png
|
|
2
|
+
:height: 100px
|
|
3
|
+
:width: 97.379 px
|
|
4
|
+
:alt: netective logo
|
|
5
|
+
:align: right
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Use structural and standard performance metrics to assess network inference
|
|
9
|
+
|
|
10
|
+
.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
|
|
11
|
+
:target: https://github.com/pre-commit/pre-commit
|
|
12
|
+
:alt: pre-commit
|
|
13
|
+
|
|
14
|
+
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
|
15
|
+
:target: https://github.com/psf/black
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "netective"
|
|
7
|
+
version = "0.0.2"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Juan Escorcia", email="juanesscorcia@gmail.com" },
|
|
10
|
+
{ name="Julio Freyre", email="jfreyreg@gmail.com" },
|
|
11
|
+
]
|
|
12
|
+
description = "Use structural and standard performance metrics to assess network inference"
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.7"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
dependencies = []
|
|
21
|
+
|
|
22
|
+
[project.optional-dependencies]
|
|
23
|
+
test = ["pytest"]
|
|
24
|
+
lint = [ "black"]
|
|
25
|
+
cov = ["pytest < 5.0.0", "pytest-cov[all]"]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
"Homepage" = "https://github.com/JuanEscorcia/netective.git"
|
|
29
|
+
|
|
30
|
+
[project.scripts]
|
|
31
|
+
netective = "netective.cli.netective:main"
|
|
32
|
+
|
|
33
|
+
[tool.pytest.ini_options]
|
|
34
|
+
addopts = "--cov=netective"
|
|
35
|
+
testpaths = ["tests"]
|
netective-0.0.2/setup.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# import os
|
|
2
|
+
# import platform
|
|
3
|
+
from setuptools import setup
|
|
4
|
+
|
|
5
|
+
if __name__ == "__main__":
|
|
6
|
+
setup()
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# scripts = os.path.join(os.path.dirname(__file__), 'cli', 'netective')
|
|
10
|
+
|
|
11
|
+
# if platform.system() == 'Windows':
|
|
12
|
+
# scripts = [scripts+'.bat']
|
|
13
|
+
# else:
|
|
14
|
+
# scripts = [scripts+'.sh']
|
|
15
|
+
|
|
16
|
+
# setup(
|
|
17
|
+
# # name='netective',
|
|
18
|
+
# # version='0.5',
|
|
19
|
+
# # py_modules=['netective'],
|
|
20
|
+
# entry_points={
|
|
21
|
+
# 'console_scripts': [
|
|
22
|
+
# 'netective=netective:main',
|
|
23
|
+
# ],
|
|
24
|
+
# },
|
|
25
|
+
# )
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
print("This package will be available very soon!")
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: netective
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Use structural and standard performance metrics to assess network inference
|
|
5
|
+
Author-email: Juan Escorcia <juanesscorcia@gmail.com>, Julio Freyre <jfreyreg@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/JuanEscorcia/netective.git
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Provides-Extra: test
|
|
13
|
+
Provides-Extra: lint
|
|
14
|
+
Provides-Extra: cov
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
README.rst
|
|
2
|
+
pyproject.toml
|
|
3
|
+
setup.cfg
|
|
4
|
+
setup.py
|
|
5
|
+
src/netective/__init__.py
|
|
6
|
+
src/netective/implementation.py
|
|
7
|
+
src/netective.egg-info/PKG-INFO
|
|
8
|
+
src/netective.egg-info/SOURCES.txt
|
|
9
|
+
src/netective.egg-info/dependency_links.txt
|
|
10
|
+
src/netective.egg-info/entry_points.txt
|
|
11
|
+
src/netective.egg-info/requires.txt
|
|
12
|
+
src/netective.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
netective
|