Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pretix Matrix Inviter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
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
KIF
Pretix Matrix Inviter
Commits
e4e424d6
Commit
e4e424d6
authored
1 year ago
by
Felix Schäfer
Browse files
Options
Downloads
Patches
Plain Diff
Move to pyproject.toml
parent
6f2db8c0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
pyproject.toml
+52
-0
52 additions, 0 deletions
pyproject.toml
setup.py
+2
-55
2 additions, 55 deletions
setup.py
with
56 additions
and
55 deletions
CHANGELOG.md
+
2
−
0
View file @
e4e424d6
...
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
...
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
## [Unreleased]
## [Unreleased]
### Changed
-
Move to pyproject.toml
## [1.7.1] - 2023-10-04
## [1.7.1] - 2023-10-04
### Fixed
### Fixed
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
0 → 100644
+
52
−
0
View file @
e4e424d6
[project]
name
=
"pretix-matrix-inviter"
dynamic
=
[
"version"
]
description
=
"Invite pretix participants to a Matrix Room or Space."
readme
=
"README.md"
license
=
{
text
=
"MIT License"
}
keywords
=
[
"pretix"
,
"matrix"
]
authors
=
[
{name
=
"Felix Schäfer"
,
email
=
"admin@kif.rocks"
}
,
]
maintainers
=
[
{name
=
"Felix Schäfer"
,
email
=
"admin@kif.rocks"
}
,
]
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Framework :: Django"
,
"License :: OSI Approved :: MIT License"
,
"Topic :: Communications :: Chat"
,
]
dependencies
=
[
"requests"
,
]
[project.entry-points."pretix.plugin"]
pretix_matrix_inviter
=
"pretix_matrix_inviter:PretixPluginMeta"
[project.entry-points."distutils.commands"]
build
=
"pretix_plugin_build.build:CustomBuild"
[build-system]
requires
=
[
"setuptools"
,
"pretix-plugin-build"
,
]
[project.urls]
Homepage
=
"https://gitlab.fachschaften.org/kif/pretix-matrix-inviter"
Repository
=
"https://gitlab.fachschaften.org/kif/pretix-matrix-inviter"
Changelog
=
"https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/blob/main/CHANGELOG.md"
Tracker
=
"https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/issues"
"pretix Marketplace"
=
"https://marketplace.pretix.eu/products/pretix-matrix-inviter/"
[tool.setuptools]
include-package-data
=
true
[tool.setuptools.dynamic]
version
=
{
attr
=
"pretix_matrix_inviter.__version__"
}
[tool.setuptools.packages.find]
include
=
[
"pretix*"
]
namespaces
=
false
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
55
View file @
e4e424d6
import
os
from
setuptools
import
setup
from
distutils.command.build
import
build
from
django.core
import
management
from
setuptools
import
find_packages
,
setup
from
pretix_matrix_inviter
import
__version__
setup
()
try
:
with
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
README.md
"
),
encoding
=
"
utf-8
"
)
as
f
:
long_description
=
f
.
read
()
except
Exception
:
long_description
=
""
class
CustomBuild
(
build
):
def
run
(
self
):
management
.
call_command
(
"
compilemessages
"
,
verbosity
=
1
)
build
.
run
(
self
)
cmdclass
=
{
"
build
"
:
CustomBuild
}
setup
(
name
=
"
pretix-matrix-inviter
"
,
version
=
__version__
,
description
=
"
Invite pretix participants to a Matrix Room or Space.
"
,
long_description
=
long_description
,
long_description_content_type
=
"
text/markdown
"
,
url
=
"
https://gitlab.fachschaften.org/kif/pretix-matrix-inviter
"
,
project_urls
=
{
"
Changelog
"
:
"
https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/blob/main/CHANGELOG.md
"
,
"
Tracker
"
:
"
https://gitlab.fachschaften.org/kif/pretix-matrix-inviter/-/issues
"
,
"
pretix Marketplace
"
:
"
https://marketplace.pretix.eu/products/pretix-matrix-inviter/
"
,
},
author
=
"
Felix Schäfer
"
,
author_email
=
"
admin@kif.rocks
"
,
license
=
"
MIT
"
,
classifiers
=
[
"
Development Status :: 5 - Production/Stable
"
,
"
Framework :: Django
"
,
"
License :: OSI Approved :: MIT License
"
,
"
Topic :: Communications :: Chat
"
,
],
install_requires
=
[
"
requests
"
],
packages
=
find_packages
(
exclude
=
[
"
tests
"
,
"
tests.*
"
]),
include_package_data
=
True
,
cmdclass
=
cmdclass
,
entry_points
=
"""
[pretix.plugin]
pretix_matrix_inviter=pretix_matrix_inviter:PretixPluginMeta
"""
,
)
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