-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.04 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "asali"
version = "3.6.0"
authors = [{name = "ASALI", email = "[email protected]"}]
maintainers = [{name = "Stefano Rebughini", email="[email protected]"}]
description = "A Python package to simulate chemical reactors"
license = {text = "GPL"}
classifiers = [
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Topic :: Chemical Reactors :: Libraries :: Python Modules",
]
requires-python = ">=3.7,<=3.12"
readme = {file="README.md", content-type="text/markdown"}
[project.urls]
Homepage = "https://github.com/srebughini/ASALIPY"
Issues = "https://github.com/srebughini/ASALIPY/issues"
[tool.setuptools]
include-package-data = true
package-dir = {asali = "asali"}
packages = [
"asali.utils",
"asali.plotters",
"asali.savers",
"asali.reactors",
"asali.reactors.shapes",
]
platforms = ["any"]
license-files = ["LICENSE"]