2 Commits 18fa6cab57 ... 211fc8d216

Autor SHA1 Mensaje Fecha
  Ovidio Peña Rodríguez 211fc8d216 Updated PIP package. hace 11 meses
  Ovidio Peña Rodríguez a91e5a2ca2 Updated PIP package. hace 11 meses
Se han modificado 2 ficheros con 23 adiciones y 2 borrados
  1. 1 1
      README.md
  2. 22 1
      pyproject.toml

+ 1 - 1
README.md

@@ -94,7 +94,7 @@ sudo apt install python-scattnlay
 ```
 You can also install it from PyPi via
 ```bash
-sudo pip install python-scattnlay
+sudo pip install scattnlay
 ```
 
 You can also ```git clone``` and ```pip install -e .``` to develop python package.

+ 22 - 1
pyproject.toml

@@ -1,3 +1,24 @@
 [build-system]
 requires = ["setuptools", "pybind11", "numpy"]
-build-backend = "setuptools.build_meta"
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "scattnlay"
+version = "2.4"
+requires-python = ">=3.8"
+authors = [
+    {name = "Ovidio Peña", email = "ovidio@bytesfall.com"},
+    {name = "Konstantin Ladutenko", email = "k.ladutenko@metalab.ifmo.ru"},
+]
+maintainers = [
+    {name = "Ovidio Peña", email = "ovidio@bytesfall.com"}
+]
+description = "Calculation of the scattering of EM radiation by a multilayered sphere"
+readme = "README.md"
+license = {file = "LICENSE"}
+keywords = ["Light scattering"]
+classifiers = [
+    "Development Status :: 5 - Production/Stable",
+    "Programming Language :: C++",
+    "Programming Language :: Python"
+]