Skip to content

Commit 8ad9ed1

Browse files
authored
chnage to pyproject
1 parent 5681e89 commit 8ad9ed1

1 file changed

Lines changed: 21 additions & 13 deletions

File tree

setup.py

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1-
from setuptools import setup, find_packages
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
24

3-
setup(
4-
name="tkvideo",
5-
version="0.0.1",
6-
description="A simple Tkinter Python Package For synced audio & video playback.",
7-
packages=find_packages(),
8-
classifiers=[
9-
"Programming Language :: Python :: 3",
10-
"License :: OSI Approved :: GPL-3.0",
11-
"Operating System :: OS Independent",
12-
],
13-
python_requires=">=3.6",
14-
)
5+
[project]
6+
name = "tkintervideo"
7+
version = "0.0.2"
8+
authors = [
9+
{ name="Goutham (cool-guy)" },
10+
]
11+
description = "A simple Tkinter Python Package For synced audio & video playback."
12+
readme = "README.md"
13+
requires-python = ">=3.6"
14+
classifiers=[
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: GNU General Public License (GPL)",
17+
"Operating System :: OS Independent",
18+
]
19+
20+
[project.urls]
21+
"Homepage" = "https://github.com/cool-dev-guy/tkintervideo"
22+
"Bug Tracker" = "https://github.com/cool-dev-guy/tkintervideo/issues"

0 commit comments

Comments
 (0)