|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "BladeX" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Python Blade Morphing" |
| 9 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 10 | +requires-python = ">=3.9" |
| 11 | +license = { text = "MIT" } |
| 12 | +authors = [ |
| 13 | + { name = "Marco Tezzele", email = "[email protected]" }, |
| 14 | + { name = "Mahmoud Gadalla", email = "[email protected]" } |
| 15 | +] |
| 16 | +keywords = ["blade-generation", "propeller", "iges", "procal"] |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "License :: OSI Approved :: MIT License", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Programming Language :: Python :: 3.11", |
| 23 | + "Programming Language :: Python :: 3.12", |
| 24 | + "Intended Audience :: Science/Research", |
| 25 | + "Topic :: Scientific/Engineering :: Mathematics" |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "numpy", |
| 29 | + "scipy", |
| 30 | + "matplotlib", |
| 31 | +] |
| 32 | + |
| 33 | +[project.optional-dependencies] |
| 34 | +docs = [ |
| 35 | + "Sphinx", |
| 36 | + "sphinx_rtd_theme" |
| 37 | +] |
| 38 | +test = [ |
| 39 | + "pytest", |
| 40 | + "pytest-cov" |
| 41 | +] |
| 42 | + |
| 43 | +[project.urls] |
| 44 | +Homepage = "https://github.com/mathLab/BladeX" |
| 45 | + |
| 46 | +[tool.setuptools] |
| 47 | +include-package-data = true |
| 48 | + |
| 49 | +[tool.setuptools.packages.find] |
| 50 | +include = ["bladex*"] |
| 51 | + |
0 commit comments