Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to PEP621 compliant project metadata. #2229

Merged
merged 12 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ Toga is part of the `BeeWare suite`_. You can talk to the community through:
We foster a welcoming and respectful community as described in our
`BeeWare Community Code of Conduct`_.

.. _BeeWare suite: http://beeware.org
.. _BeeWare suite: https://beeware.org
.. _@beeware@fosstodon.org on Mastodon: https://fosstodon.org/@beeware
.. _Discord: https://beeware.org/bee/chat/
.. _Github Discussions forum: https://github.com/beeware/toga/discussions
.. _BeeWare Community Code of Conduct: http://beeware.org/community/behavior/
.. _BeeWare Community Code of Conduct: https://beeware.org/community/behavior/

Contributing
------------
Expand Down
5 changes: 0 additions & 5 deletions android/MANIFEST.in

This file was deleted.

62 changes: 61 additions & 1 deletion android/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,67 @@
[build-system]
requires = ["setuptools==66.1.1", "setuptools_scm[toml]==7.0.5"]
requires = [
"setuptools==69.0.0",
"setuptools_scm==8.0.4",
"setuptools_dynamic_dependencies @ git+https://github.com/beeware/setuptools_dynamic_dependencies",
]
build-backend = "setuptools.build_meta"

[project]
dynamic = ["version", "dependencies"]
name = "toga-android"
description = "An Android backend for the Toga widget toolkit."
readme = "README.rst"
requires-python = ">= 3.8"
license.text = "New BSD"
authors = [
{name="Russell Keith-Magee", email="russell@keith-magee.com"},
]
maintainers = [
{name="BeeWare Team", email="team@beeware.org"},
]
keywords = [
"gui",
"widget",
"cross-platform",
"toga",
"mobile",
"android",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Widget Sets",
]

[project.urls]
Homepage = "https://beeware.org/project/projects/libraries/toga/"
Funding = "https://beeware.org/contributing/membership/"
Documentation = "https://toga.readthedocs.io/en/latest/"
Tracker = "https://github.com/beeware/toga/issues"
Source = "https://github.com/beeware/toga"

[project.entry-points."toga.backends"]
android = "toga_android"

[tool.setuptools_scm]
root = ".."

[tool.setuptools_dynamic_dependencies]
dependencies = [
"toga-core == {version}",
]

[tool.coverage.run]
parallel = true
branch = true
Expand Down
54 changes: 0 additions & 54 deletions android/setup.cfg

This file was deleted.

11 changes: 0 additions & 11 deletions android/setup.py

This file was deleted.

7 changes: 0 additions & 7 deletions attic/django/CONTRIBUTING.md

This file was deleted.

27 changes: 0 additions & 27 deletions attic/django/LICENSE

This file was deleted.

6 changes: 0 additions & 6 deletions attic/django/MANIFEST.in

This file was deleted.

80 changes: 0 additions & 80 deletions attic/django/README.rst

This file was deleted.

60 changes: 0 additions & 60 deletions attic/django/setup.cfg

This file was deleted.

26 changes: 0 additions & 26 deletions attic/django/setup.py

This file was deleted.

16 changes: 0 additions & 16 deletions attic/django/toga_django/__init__.py

This file was deleted.

Loading