pyproject.toml (679B)
1 [tool.poetry] 2 name = "dabbling" 3 version = "0.1.0" 4 description = "" 5 authors = ["Yuval Langer"] 6 license = "agpl-3.0-or-later" 7 8 [tool.poetry.dependencies] 9 python = ">=3.6.1,<4" 10 beautifulsoup4 = ">=4,<5" 11 jupyter = ">=1,<2" 12 matplotlib = ">=3.2,<4" 13 #manimlib = ">=0.1,<0.2" 14 requests = ">=2,<3" 15 pandas = ">=1,<2" 16 click = "^7.1" 17 18 [tool.poetry.dev-dependencies] 19 pytest = "^" 20 mypy = "^0.780" 21 coverage = {extras = ["toml"], version = "^5.1"} 22 pytest-cov = "^2.9.0" 23 black = "^19.10b0" 24 25 [tool.poetry.scripts] 26 dragon-curve = "src.dabbling.console:main_dragon" 27 hilbert-curve = "src.dabbling.console:main_hilbert" 28 29 [build-system] 30 requires = ["poetry>=0.12"] 31 build-backend = "poetry.masonry.api" 32