-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = [
"setuptools >= 61.0",
"numpy >= 1.7" # Remove numpy to build without numpy support.
]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "jep"
description = "Jep embeds CPython in Java through JNI."
dynamic = ["version"]
license = { "text" = "Zlib"}
readme = "README.rst"
requires-python = ">= 3.10"
authors = [
{name = "Mike Johnson", email = "mike@mrj0.com"}
]
maintainers = [
{name = "Nate Jensen", email = "ndjensen@gmail.com"},
{name = "Ben Steffensmeier", email = "ben.steffensmeier@gmail.com"}
]
classifiers = [
"License :: OSI Approved :: zlib/libpng License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Java Libraries",
"Programming Language :: Java",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython"
]
keywords = ["java"]
[project.urls]
Homepage = "https://github.com/ninia/jep"
Documentation = "https://github.com/ninia/jep/wiki"
JavaDoc = "https://ninia.github.io/jep/javadoc"
Repository = "https://github.com/ninia/jep.git"
Issues = "https://github.com/ninia/jep.issues"
[project.optional-dependencies]
numpy = ["numpy >= 1.7"]