-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.23 KB
/
pyproject.toml
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
[project]
name = "rust_sbml"
version = "0.6.1"
description = "Python Bindings to rust_sbml"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["parser", "sbml", "science", "bioinformatics"]
authors = [
{email = "[email protected]"},
]
maintainers = [
{name = "Jorge Carrasco Muriel", email = "[email protected]"}
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Programming Language :: Rust",
]
[tool.poetry]
name = "rust_sbml"
version = "0.6.1"
description = "Python Bindings to rust_sbml"
authors = [
"Jorge Carrasco Muriel",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/carrascomj/rust_sbml"
keywords = ["parser", "sbml", "science", "bioinformatics"]
[tool.poetry.dependencies]
python = "^3.6"
[build-system]
requires = ["maturin"]
build-backend = "maturin"
[tool.poetry.dev-dependencies]
maturin = "==0.9.4"