diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..abc1017 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=45", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "graphscii" +version = "0.1.0" +description = "ASCII graph visualization library" +readme = "README.md" +requires-python = ">=3.6" +dependencies = [ + "contourpy==1.2.0", + "cycler==0.12.1", + "fonttools==4.47.0", + "kiwisolver==1.4.5", + "matplotlib==3.8.2", + "networkx==3.2.1", + "numpy==1.26.2", + "packaging==23.2", + "Pillow==10.1.0", + "PuLP==2.7.0", + "pyparsing==3.1.1", + "python-dateutil==2.8.2", + "six==1.16.0" +] + +[tool.setuptools.packages.find] +where = ["."] +include = ["graphscii*"] \ No newline at end of file