Created
November 6, 2018 21:15
-
-
Save constrict0r/58482e72dee02ad730e7c61ed92491dc to your computer and use it in GitHub Desktop.
pyproject.tom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "amanita" | |
version = "0.1.0" | |
description = "Create customizable python projects" | |
authors = ["constrict0r <[email protected]>"] | |
license="MIT" | |
readme = "README.rst" | |
homepage="https://github.com/constrict0r/amanita" | |
repository="https://github.com/constrict0r/amanita" | |
documentation="https://amanita.readthedocs.io" | |
keywords = ["project", "auto"] | |
classifiers = [ | |
'Topic :: Software Development :: Build Tools', | |
'License :: OSI Approved :: MIT License', | |
] | |
[tool.poetry.dev-dependencies] | |
pytest = "^3.0" | |
tox = "^3.5.3" | |
[tool.poetry.dependencies] | |
click = "^7.0" | |
[tool.poetry.scripts] | |
amanita = "amanita.cli:main" | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" | |
[tool.tox] | |
legacy_tox_ini= """ | |
[tox] | |
skipsdist = True | |
envlist = py{35} | |
[testenv] | |
deps = | |
pytest | |
commands = | |
poetry install | |
py.test tests | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment