Commit 3de22b61 authored by Saman Sarraf's avatar Saman Sarraf
Browse files

added setup files

parent 1fb0d58c
Loading
Loading
Loading
Loading

pyproject.toml

0 → 100644
+27 −0
Original line number Diff line number Diff line
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "mint"
version = "0.1.0"
description = "A Python package for multimodal community detection using multilayer network integration."
authors = [
    { name = "Your Name", email = "your.email@example.com" }
]
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
dependencies = [
    "numpy",
    "pandas",
    "scikit-learn",
    "networkx",
    "matplotlib",
    "seaborn"
]
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent"
]

requirements.txt

0 → 100644
+6 −0
Original line number Diff line number Diff line
numpy
pandas
scikit-learn
networkx
matplotlib
seaborn

setup.py

0 → 100644
+3 −0
Original line number Diff line number Diff line
from setuptools import setup

setup()