-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 757 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 757 Bytes
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
[project]
name = "objectindex"
version = "0.2.5"
description = "Object Index allows you to index your objexts in S3"
readme = "README.md"
requires-python = ">=3.8"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [{name = "ctengel"}]
keywords = ["object", "s3"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Natural Language :: English"
]
dependencies = [
'flask-sqlalchemy >= 2.5, < 3',
'flask >= 2.1, < 3',
'flask-restx >= 1.0',
'requests >= 2.27',
'psycopg2 >= 2.9',
'sqlalchemy >= 1.4, < 2'
]
[project.urls]
repository = "https://github.com/ctengel/objectindex"
[project.scripts]
obj-idx-client = "obj_idx.cli:cli"
[tool.setuptools.packages.find]
include = ["obj_idx"]