|
| 1 | +[project] |
| 2 | +name = "smart_importer" |
| 3 | +description = "Augment Beancount importers with machine learning functionality." |
| 4 | +readme = "README.rst" |
| 5 | +requires-python = ">=3.10" |
| 6 | +license = "MIT" |
| 7 | +authors = [{ name = "Johannes Harms" }] |
| 8 | +keywords = ["fava", "beancount", "accounting", "machinelearning"] |
| 9 | +classifiers = [ |
| 10 | + "Development Status :: 1 - Planning", |
| 11 | + "Environment :: Web Environment", |
| 12 | + "Environment :: Console", |
| 13 | + "Intended Audience :: Education", |
| 14 | + "Intended Audience :: End Users/Desktop", |
| 15 | + "Intended Audience :: Financial and Insurance Industry", |
| 16 | + "Intended Audience :: Information Technology", |
| 17 | + "Natural Language :: English", |
| 18 | + "Programming Language :: Python :: 3 :: Only", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Programming Language :: Python :: 3.12", |
| 22 | + "Programming Language :: Python :: 3.13", |
| 23 | + "Programming Language :: Python :: 3.14", |
| 24 | + "Topic :: Office/Business :: Financial :: Accounting", |
| 25 | + "Topic :: Office/Business :: Financial :: Investment", |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "beancount>=3", |
| 29 | + "beangulp", |
| 30 | + "scikit-learn>=1.0", |
| 31 | + "numpy>=1.18.0", |
| 32 | + "typing-extensions>=4.9", |
| 33 | +] |
| 34 | +dynamic = ["version"] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Homepage = "https://github.com/beancount/smart_importer" |
| 38 | +Issues = "https://github.com/beancount/smart_importer/issues" |
| 39 | + |
| 40 | +[tool.setuptools.packages.find] |
| 41 | +exclude = ["tests"] |
| 42 | + |
1 | 43 | [build-system] |
2 | | -requires = ["setuptools>=30.3.0", "wheel", "setuptools_scm"] |
| 44 | +requires = ["setuptools>=80", "setuptools_scm[simple]>=8"] |
3 | 45 | build-backend = "setuptools.build_meta" |
4 | 46 |
|
5 | 47 | [tool.black] |
|
0 commit comments