Skip to content

Commit 62e8ba2

Browse files
author
Murilo M. Marinho
committed
[pyproject.toml] Cleaning up legacy statements on setup.py.
1 parent 186f1fd commit 62e8ba2

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

pybind11

Submodule pybind11 updated 218 files

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,26 @@ requires = [
99
build-backend = "setuptools.build_meta"
1010

1111
[project]
12+
name = 'dqrobotics'
1213
authors = [
1314
{name = "Murilo M. Marinho", email = "murilomarinho@ieee.org"}
1415
]
1516
maintainers = [
1617
{name = "Murilo M. Marinho", email = "murilomarinho@ieee.org"}
1718
]
18-
name = 'dqrobotics'
1919
dynamic = ["version", "classifiers"]
2020
dependencies=[
2121
'numpy',
2222
]
2323
description='dqrobotics Python'
2424
readme = "README.md"
25+
requires-python = ">= 3.9"
26+
27+
[project.urls]
28+
Homepage = "https://dqrobotics.github.io"
29+
Documentation = "https://dqroboticsgithubio.readthedocs.io/en/latest/installation/python.html"
30+
Repository = "https://github.com/dqrobotics/python"
31+
Issues = "https://github.com/dqrobotics/python/issues"
2532

2633
# https://pypi.org/project/setuptools-git-versioning/
2734
[tool.setuptools-git-versioning]

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
from distutils.version import LooseVersion
1010

1111

12-
# read the contents of your README file
13-
with open("README.md", "r") as fh:
14-
long_description = fh.read()
15-
1612

1713
class CMakeExtension(Extension):
1814
def __init__(self, name, sourcedir=''):
@@ -70,8 +66,6 @@ def build_extension(self, ext):
7066

7167

7268
setup(
73-
author_email='murilomarinho@ieee.org',
74-
url="https://github.com/dqrobotics/python",
7569
ext_modules=[CMakeExtension('dqrobotics._dqrobotics')],
7670
cmdclass=dict(build_ext=CMakeBuild),
7771
zip_safe=False,
@@ -89,11 +83,10 @@ def build_extension(self, ext):
8983
'dqrobotics.robot_control',
9084
'dqrobotics.solvers'],
9185
classifiers=[
92-
"Programming Language :: Python :: 3.8",
93-
"Programming Language :: Python :: 3.9",
9486
"Programming Language :: Python :: 3.10",
9587
"Programming Language :: Python :: 3.11",
9688
"Programming Language :: Python :: 3.12",
89+
"Programming Language :: Python :: 3.13",
9790
"Programming Language :: C++",
9891
"Development Status :: 5 - Production/Stable",
9992
"Operating System :: POSIX :: Linux",

0 commit comments

Comments
 (0)