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

migrate from setup.* to pyproject.toml #52

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 7 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
55 changes: 55 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
[project]
name = "vobject"
dynamic = ["version"]
description = "A full-featured Python package for parsing and creating iCalendar and vCard files"
authors = [
{ name = "Jeffrey Harris", email = "jeffrey@osafoundation.org" },
]
maintainers = [
{ name = "David Arnold", email = "davida@pobox.com" },
]
license = { text = "Apache" }
lucc marked this conversation as resolved.
Show resolved Hide resolved
readme = "README.md"
lucc marked this conversation as resolved.
Show resolved Hide resolved

keywords = ["vobject", "icalendar", "vcard", "ics", "vcs", "hcalendar"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Text Processing",
]

dependencies = [
"python-dateutil >= 2.5.0; python_version < '3.10'",
"python-dateutil >= 2.7.0; python_version >= '3.10'",
"pytz",
"six",
]

[project.urls]
Homepage = "http://py-vobject.github.io/vobject/"
Repository = "https://github.com/py-vobject/vobject.git"
Download = 'https://github.com/py-vobject/vobject/releases'
Issues = "https://github.com/py-vobject/vobject/issues"

[project.scripts]
ics_diff = "vobject.ics_diff:main"
change_tz = "vobject.change_tz:main"

[tool.setuptools]
include-package-data = true
packages = ["vobject"]
platforms = ["any"]

[tool.setuptools.dynamic]
version = {attr = "vobject.VERSION"}

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

71 changes: 0 additions & 71 deletions setup.py

This file was deleted.