diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3453d01 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "rfeed" +version = "1.0.0" +license = { text = "MIT" } +authors = [ + { name = "Santiago L. Valdarrama", email = "svpino@gmail.com" }, +] +description = "Python RSS 2.0 Generator" +readme = "README.md" +requires-python = ">=2.7" +classifiers = [ + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + "Topic :: Internet :: WWW/HTTP", +] + +[project.urls] +"Homepage" = "https://github.com/svpino/rfeed" +"Bug Tracker" = "https://github.com/svpino/rfeed/issues" + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index 4dccef2..6068493 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,3 @@ from setuptools import setup -setup(name = "rfeed", - version = "1.0.0", - description = "Python RSS 2.0 Generator", - author = "Santiago L. Valdarrama", - author_email = "svpino@gmail.com", - url = "https://github.com/svpino/rfeed/blob/master/README.md", - license = "MIT", - py_modules = ["rfeed"]) +setup()