|
| 1 | +[project] |
| 2 | +name = "pydifact" |
| 3 | +dynamic = ["version"] |
| 4 | +authors = [{ name = "Christian González", email = "[email protected]" }] |
| 5 | +license = { "file" = "LICENSE" } |
| 6 | +description = "Pydifact is a library that aims to provide complete support for reading and writing EDIFACT files. These file format, despite being old, is still a standard in many business cases. In Austria e.g., it is used for the transfer of medical reports between medical doctors." |
| 7 | +readme = "README.md" |
| 8 | +classifiers = [ |
| 9 | + "Development Status :: 3 - Alpha", |
| 10 | + "Environment :: Console", |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "License :: OSI Approved :: MIT License", |
| 13 | + "Natural Language :: English", |
| 14 | + "Operating System :: MacOS :: MacOS X", |
| 15 | + "Operating System :: Microsoft :: Windows", |
| 16 | + "Operating System :: POSIX", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Topic :: Software Development :: Libraries" |
| 19 | +] |
| 20 | +requires-python = ">=3.8" |
| 21 | + |
| 22 | +[dependencies] |
| 23 | +# none |
| 24 | + |
| 25 | +[project.optional-dependencies] |
| 26 | +dev = [ |
| 27 | + "pytest>=8.0.1", |
| 28 | + "pytest-cov>=4.1.0", |
| 29 | + "pytest-profiling>=1.7.0", |
| 30 | + "keyring>=24.3.0", |
| 31 | + "Sphinx>=7.2.0", |
| 32 | + "setuptools>=69.1.0", |
| 33 | + "wheel>=0.42.0", |
| 34 | + "black>=24.0.0", |
| 35 | + "sphinx-rtd-theme>=2.0.0" |
| 36 | + ] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Documentation = "https://pydifact.readthedocs.io" |
| 40 | +Repository = "https://github.com/nerdocs/pydifact" |
| 41 | +Issues = "https://github.com/nerdocs/pydifact/issues" |
| 42 | + |
| 43 | +[build-system] |
| 44 | +requires = ["setuptools>=61.0.0", "wheel"] |
| 45 | +build-backend = "setuptools.build_meta" |
| 46 | + |
| 47 | +[tool.setuptools.dynamic] |
| 48 | +version = {attr = "pydifact.__version__"} |
0 commit comments