-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.21 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
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "stuser"
version = '0.0.3'
description = 'User registration, login and associated ecosystem for Streamlit'
readme = 'README.md'
authors = [
{name = 'Alex Melesko', email='[email protected]'}
]
license = {file = 'LICENSE'}
requires-python = '>=3.6'
dependencies = [
"argon2-cffi >= 23.1.0",
"crcmod >= 1.7",
"cryptography >= 43.0.3",
"pandas >= 2.2.3",
"streamlit >= 1.40.0"
]
keywords = ['Python', 'Streamlit', 'Authentication', 'Components']
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3"
]
[project.optional-dependencies]
google = [
"db-dtypes >= 1.3.1",
"google-api-python-client >= 2.153.0",
"google-auth >= 2.36.0",
"google-auth-httplib2 >= 0.2.0",
"google-auth-oauthlib >= 1.2.1",
"google-cloud-bigquery >= 3.27.0"
]
sendgrid = [
"sendgrid >= 6.11.0"
]
[project.urls]
'repository' = 'https://github.com/msquaredds/StUser'
[tool.setuptools]
packages = ["stuser"]