-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 935 Bytes
/
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
[tool.poetry]
name = "SQLAlchemy-ImageAttach-boto3"
version = "0.1.1"
description = "SQLAlchemy-ImageAttach AWS S3 Store with boto3"
authors = ["Spoqa Creators <[email protected]>"]
maintainers = ["rusty <[email protected]>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/spoqa/sqlalchemy-imageattach-boto3"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Database :: Front-Ends',
'Topic :: Multimedia :: Graphics',
]
packages = [
{ include = "sqlalchemy_imageattach_boto3.py" },
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.4"
boto3 = "^1.11"
SQLAlchemy-ImageAttach = "~1.1.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
flake8-import-order = "^0.18.1"
flake8-import-order-spoqa = "^1.5.0"
typing = { version = "^3.7", python = "< 3.5" }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"