|
| 1 | +[project] |
| 2 | +name = "reflex-web" |
| 3 | +version = "0.0.1" |
| 4 | +authors = [ |
| 5 | + { name = "Nikhil Rao", email = "[email protected]" }, |
| 6 | + { name = "Alek Petuskey", email = "[email protected]" }, |
| 7 | +] |
| 8 | +readme = "README.md" |
| 9 | +requires-python = ">=3.11" |
| 10 | +dependencies = [ |
| 11 | + "email-validator==2.1.1", |
| 12 | + "black==23.10.0", |
| 13 | + "pandas>=1.5.3", |
| 14 | + "psycopg[binary]==3.2.3", |
| 15 | + "plotly-express==0.4.1", |
| 16 | + "googletrans-py==4.0.0", |
| 17 | + "typesense==0.14.0", |
| 18 | + "openai==1.13.3", |
| 19 | + "pyyaml>=6.0.2", |
| 20 | + "flexdown>=0.1.5a12,<0.2", |
| 21 | + "reflex @ git+https://github.com/reflex-dev/reflex@main", |
| 22 | + "mistletoe>=1.2.1", |
| 23 | + "reflex-image-zoom>=0.0.2", |
| 24 | + "reflex-chat==0.0.2a1", |
| 25 | + "reflex_type_animation==0.0.1", |
| 26 | + "reflex-ag-grid==0.0.10", |
| 27 | + "replicate==0.32.1", |
| 28 | + "reflex-pyplot==0.1.3", |
| 29 | + "python-multipart==0.0.20", |
| 30 | +] |
| 31 | + |
| 32 | +[dependency-groups] |
| 33 | +dev = ["pytest", "playwright", "pytest-playwright", "uvicorn"] |
| 34 | + |
| 35 | +[tool.setuptools.packages.find] |
| 36 | +where = ["pcweb"] |
| 37 | + |
| 38 | +[tool.ruff] |
| 39 | +target-version = "py311" |
| 40 | +output-format = "concise" |
| 41 | +lint.isort.split-on-trailing-comma = false |
| 42 | +lint.select = [ |
| 43 | + "ANN001", |
| 44 | + "B", |
| 45 | + "C4", |
| 46 | + "D", |
| 47 | + "E", |
| 48 | + "ERA", |
| 49 | + "F", |
| 50 | + "FURB", |
| 51 | + "I", |
| 52 | + "N", |
| 53 | + "PERF", |
| 54 | + "PGH", |
| 55 | + "PTH", |
| 56 | + "RUF", |
| 57 | + "SIM", |
| 58 | + "T", |
| 59 | + "TRY", |
| 60 | + "W", |
| 61 | +] |
| 62 | +lint.ignore = [ |
| 63 | + "B008", |
| 64 | + "D205", |
| 65 | + "E501", |
| 66 | + "F403", |
| 67 | + "SIM115", |
| 68 | + "RUF006", |
| 69 | + "RUF008", |
| 70 | + "RUF012", |
| 71 | + "TRY0", |
| 72 | +] |
| 73 | +lint.pydocstyle.convention = "google" |
0 commit comments