Skip to content

Commit b92f938

Browse files
author
Jan Luca van den Busch
committed
extended the pyproject
1 parent 274e0a3 commit b92f938

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

pyproject.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,28 @@ license = {text = "GPL-3.0-or-later"}
1414
classifiers = [
1515
"Intended Audience :: Science/Research",
1616
"Topic :: Scientific/Engineering :: Astronomy",
17+
"Programming Language :: C",
1718
"Programming Language :: Python :: 3",
18-
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
19+
"Programming Language :: Python :: 3.7",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
25+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
26+
"Operating System :: Microsoft :: Windows",
27+
"Operating System :: POSIX",
28+
"Operating System :: Unix",
29+
"Operating System :: MacOS",
1930
]
20-
requires-python = ">=3"
31+
requires-python = ">=3.7"
2132
dependencies = [
2233
"numpy",
2334
]
2435

36+
[project.urls]
37+
source = "https://github.com/jlvdb/balltree.git"
38+
2539
[project.optional-dependencies]
2640
test = [
2741
"pytest",

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from setuptools import setup, Extension
21
import numpy as np
2+
from setuptools import Extension, setup
33

44
balltree = Extension(
55
name="balltree._balltree",
@@ -26,5 +26,4 @@
2626
if __name__ == "__main__":
2727
setup(
2828
ext_modules=[balltree],
29-
url="https://github.com/jlvdb/balltree.git",
3029
)

0 commit comments

Comments
 (0)