[tool.poetry] name = "flatfilecms" version = "0.5" description = "flat-file CMS suitable for static site" authors = ["Radium, LLC "] license = "ISC" readme = "README.rst" homepage = "https://trac.radium.group/flatfilecms/" keywords = ["web", "pyramid", "pylons", "flat-file", "CMS"] classifiers = [ "Programming Language :: Python :: 3.6", "License :: OSI Approved :: ISC License (ISCL)", "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Site Management" ] [tool.poetry.dependencies] python = "^3.7" pyramid = "^1.10" PyYAML = "^5.1" pyramid-debugtoolbar = "^4.6.1" plaster_pastedeploy = "^0.7.0" pyramid_jinja2 = "^2.8" Markdown = "^3.1" python-frontmatter = ">0.4.5" pyramid-webpack = "^0.1.3" Babel = "^2.7" pyramid-mako = "^1.1.0" [tool.poetry.extras] debug = ["pyramid-debugtoolbar"] [tool.poetry.scripts] generate-static-site = 'flatfilecms.scripts.generate:main' [tool.poetry.dev-dependencies] WebTest = "^2.0" pytest = "^5.2" pytest-cov = "^2.8" [tool.poetry.plugins."paste.app_factory"] main = "flatfilecms:main" [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"