Skip to content

Commit

Permalink
preparation for PyPi (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: [email protected]
  • Loading branch information
salvaom authored Jun 20, 2023
1 parent 29b7ec7 commit 52909bb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@ authors = [
{ name = "Rico Koschmitzky" },
{ name = "Dennis Weil" },
]
description = "Fluent, object-oriented wrapper for Ftrack queries. Powerful functional-style interactions with resulting collections."
description = "Declarative, object-oriented wrapper for Ftrack queries. Powerful functional-style interactions with resulting collections."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"

classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
Expand All @@ -19,6 +26,10 @@ dependencies = [
]
dynamic = ["version"]

[project.urls]
"Homepage" = "https://github.com/TrixterFilm/trackteroid"
"Bug Tracker" = "https://github.com/TrixterFilm/trackteroid/issues"

[tool.setuptools.dynamic]
version = { attr = "trackteroid.constants.__VERSION__" }

Expand Down
2 changes: 1 addition & 1 deletion src/trackteroid/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

__VERSION__ = "0.1.0"
__VERSION__ = "0.1.0rc1"

0 comments on commit 52909bb

Please sign in to comment.