-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 979 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kindmesh"
version = "0.1.0"
description = "A lightweight, secure, browser-based app for nonprofits to distribute resources"
readme = "README.md"
authors = [
{name = "Adam Patch", email = "ae.patch@gmail.com"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"streamlit>=1.32.0",
"neo4j>=5.14.0",
"python-dotenv>=1.0.0",
"bcrypt>=4.0.1",
"numpy>=1.26.3",
"pandas>=2.1.4",
"pydantic>=2.5.3",
"pyvis>=0.3.2",
"altair>=5.1.2",
]
[project.urls]
"Homepage" = "https://github.com/patchmemory/kindmesh"
"Bug Tracker" = "https://github.com/patchmemory/kindmesh/issues"
[tool.setuptools]
packages = ["kindmesh"]
[project.scripts]
kindmesh = "kindmesh.app:main"