-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 900 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 900 Bytes
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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "python-dotenvx"
dynamic = ["version"]
description = "a secure dotenv–from the creator of `dotenv`"
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
license = { text = "BSD-3-Clause" }
authors = [
{ name = "dotenv", email = "mot@dotenvx.com" }
]
keywords = [
"environment",
"environment variables",
"env",
"dotenv",
"python",
"dotenvx"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://dotenvx.com"
Repository = "https://github.com/dotenvx/python-dotenvx"
[tool.maturin]
python-source = "src"
module-name = "dotenvx._native"
features = ["pyo3/extension-module"]