-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.13 KB
/
pyproject.toml
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
[tool.poetry]
name = "datastorm"
version = "0.0.0a9"
homepage = "https://github.com/JavierLuna/datastorm"
repository = "https://github.com/JavierLuna/datastorm"
documentation = "https://datastorm.readthedocs.io/en/latest/"
description = "Simple and easy to use ODM for Google Datastore. Documentation: https://datastorm-docs.rtfd.io"
authors = ["JavierLuna <[email protected]>"]
license = "MIT"
keywords = ["odm", "datastore", "google-cloud", "google-datastore", "orm"]
classifiers= [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Spanish',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
packages = [{include= "datastorm"}]
[tool.poetry.dependencies]
python = "^3.6"
google-cloud-datastore = "^1.9"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-mock = "^1.11"
pytest-cov = "^2.8"
flake8 = "^3.7"
pre-commit = "^1.20"
mypy = "^0.740.0"
bump2version = "^0.5.11"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"