Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sage Validation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geant-swd
Sage Validation
Commits
2531162d
Commit
2531162d
authored
2 weeks ago
by
Erik Reid
Browse files
Options
Downloads
Patches
Plain Diff
translated setup.py to pyproject.toml, added license spdx to metadata
parent
5323ff59
Branches
develop
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
LICENSE
+1
-1
1 addition, 1 deletion
LICENSE
pyproject.toml
+37
-1
37 additions, 1 deletion
pyproject.toml
setup.py
+0
-28
0 additions, 28 deletions
setup.py
with
38 additions
and
30 deletions
LICENSE
+
1
−
1
View file @
2531162d
MIT License
Copyright (c) 2023-2024 GÉANT Software Development Team
\ No newline at end of file
Copyright (c) 2025 GÉANT Software Development Team
This diff is collapsed.
Click to expand it.
pyproject.toml
+
37
−
1
View file @
2531162d
[build-system]
requires
=
["setuptools>
=
61.0
", "
wheel
"]
build-backend
=
"setuptools.build_meta"
[project]
name
=
"sage-validation"
version
=
"0.13"
description
=
"Middleware tool for finance members to validate and pre-process MEO output for input into Sage"
license
=
"MIT"
readme
=
"README.md"
requires-python
=
">
=
3.10
"
classifiers
=
[
"Programming Language :: Python :: 3"
,
"Framework :: Django"
,
"Operating System :: OS Independent"
,
]
dependencies
=
[
"Django>
=
5.0
,
<
5.1
",
"mssql-django=
=
1.5
",
"djangorestframework=
=
3.15
.
2
",
"social-auth-app-django=
=
5.4
.
3
",
"psycopg[binary,pool]"
,
]
[project.optional-dependencies]
prod
=
[
"gunicorn"
,
"uvicorn"
,
]
[tool.setuptools]
include-package-data
=
true
[tool.setuptools.packages.find]
exclude
=
[
"test*"
]
[tool.mypy]
mypy_path
=
"sage_validation"
exclude
=
[
...
...
@@ -43,4 +79,4 @@ ban-relative-imports = "all"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE
=
"test.settings"
django_find_project
=
false
python_files
=
[
"tests.py"
,
"test_*.py"
,
"*_tests.py"
]
\ No newline at end of file
python_files
=
[
"tests.py"
,
"test_*.py"
,
"*_tests.py"
]
This diff is collapsed.
Click to expand it.
setup.py
deleted
100644 → 0
+
0
−
28
View file @
5323ff59
"""
Setup script for the sage-validation package.
"""
from
setuptools
import
find_packages
,
setup
setup
(
name
=
"
sage-validation
"
,
version
=
"
0.13
"
,
packages
=
find_packages
(),
include_package_data
=
True
,
install_requires
=
[
"
Django>=5.0,<5.1
"
,
"
mssql-django==1.5
"
,
"
djangorestframework==3.15.2
"
,
"
social-auth-app-django==5.4.3
"
,
"
psycopg[binary,pool]
"
,
],
extras_require
=
{
"
prod
"
:
[
"
gunicorn
"
,
"
uvicorn
"
,
],
},
classifiers
=
[
"
Programming Language :: Python :: 3
"
,
"
Framework :: Django
"
,
"
Operating System :: OS Independent
"
,
],
python_requires
=
"
>=3.10
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment