Skip to content

Commit

Permalink
Fix pip install
Browse files Browse the repository at this point in the history
`pip install` raises error if `m2r` is not installed.  Drop `m2r` dependency and migrate to `pyproject.toml` to natively support reading markdown.
  • Loading branch information
labrys committed Jan 8, 2023
1 parent 6294cf6 commit 610514e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 22 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = [
"setuptools>=45",
]
build-backend = "setuptools.build_meta"

[project]
name = "CherrypyScheduler"
version = "0.1.1"
description = "Repeating task scheduler for Cherrypy webserver!"
authors = [
{name="SawyerSteven", email="[email protected]"}
]
readme = {content-type='utf-8', file='README.md'}
license = {file = "LICENSE"}
classifiers=[
"Programming Language :: Python 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'cherrypy',
]

[tool.setuptools]
py-modules = ["cherrypyscheduler"]

[project.urls]
repository = "https://github.com/sawyersteven/CherrypyScheduler"
documentation = "https://github.com/sawyersteven/CherrypyScheduler/wiki"
22 changes: 0 additions & 22 deletions setup.py

This file was deleted.

0 comments on commit 610514e

Please sign in to comment.