Skip to content

Commit

Permalink
PEP 621 added (#293)
Browse files Browse the repository at this point in the history
* PEP 621 added

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* install requires and extra requires added to pyproject.toml

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* Migrated package from setup.py to pyproject.toml PEP 621

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* Author & dynamic corrected. Requires python added

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* Copyright information added

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* extra quotes removed from description

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* MANIFEST added for packaging

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

* LICENSE changed to text and url renamed

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>

---------

Signed-off-by: apurvakhatri <khatri.ap@northeastern.edu>
Co-authored-by: apurvakhatri <khatri.ap@northeastern.edu>
  • Loading branch information
apurvakhatri and apurvakhatri authored Aug 28, 2023
1 parent 9c0f7d8 commit b509830
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 101 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ chat rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
.. |twine check| replace:: ``twine check``
.. _twine check: https://packaging.python.org/guides/making-a-pypi-friendly-readme#validating-restructuredtext-markup
.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md

Copyright © 2014, [The Python Packaging Authority].
44 changes: 44 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
[project]
name = "readme_renderer"
version = "41.0"
description = "readme_renderer is a library for rendering readme descriptions for Warehouse"
authors = [
{name = "The Python Packaging Authority", email = "admin@mail.pypi.org"}
]
readme = "README.rst"
license = {text = "Apache License, Version 2.0"}
dependencies = ["bleach>=2.1.0", "docutils>=0.13.1", "Pygments>=2.5.1"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed"
]
requires-python = ">=3.8"

[project.optional-dependencies]
md = ["cmarkgfm>=0.8.0"]

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]

[project.urls]
Home-page = "https://github.com/pypa/readme_renderer"

[build-system]
requires = ["setuptools>=40.8.0"]
build-backend = "setuptools.build_meta"
Expand Down
38 changes: 0 additions & 38 deletions readme_renderer/__about__.py

This file was deleted.

63 changes: 0 additions & 63 deletions setup.py

This file was deleted.

0 comments on commit b509830

Please sign in to comment.