better packaging
This commit is contained in:
parent
cc105e5340
commit
1bf474045a
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -7,3 +7,6 @@ node_modules
|
|||
/data
|
||||
/https.crt
|
||||
/https.key
|
||||
*.egg-info
|
||||
/.tox
|
||||
/dist
|
||||
|
|
5
pyproject.toml
Normal file
5
pyproject.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
[build-system]
|
||||
requires = [
|
||||
"setuptools"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
25
setup.cfg
Normal file
25
setup.cfg
Normal file
|
@ -0,0 +1,25 @@
|
|||
[metadata]
|
||||
name = lenticular_cloud
|
||||
version = 0.0.1
|
||||
description = user management portal
|
||||
|
||||
[options]
|
||||
packages = lenticular_cloud
|
||||
install_requires =
|
||||
Flask
|
||||
gunicorn
|
||||
flask_babel
|
||||
flask_wtf
|
||||
flask_login
|
||||
flask_sqlalchemy
|
||||
Flask-Dance
|
||||
ldap3
|
||||
ldap3_orm
|
||||
python-u2flib-server
|
||||
pyotp
|
||||
cryptography
|
||||
requests
|
||||
requests_oauthlib
|
||||
blinker
|
||||
ory-hydra-client
|
||||
flask-debug
|
|
@ -7,6 +7,6 @@ let
|
|||
in
|
||||
pkgs.mkShell {
|
||||
# nativeBuildInputs is usually what you want -- tools you need to run
|
||||
nativeBuildInputs = settings.nativeBuildInputs ++ settings.testBuildInputs ++ [ pkgs.nodePackages.npm pkgs.nodejs ];
|
||||
nativeBuildInputs = settings.nativeBuildInputs ++ settings.testBuildInputs ++ [ pkgs.nodePackages.npm pkgs.nodejs python.pkgs.build ];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue