-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.57 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
38
39
40
41
42
43
44
[project]
name = "MambuPy"
authors = [{name = "Javier Novoa C.", email = "jstitch@gmail.com"}]
license = {file = "LICENSE"}
description="A python library for using Mambu APIs."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = ["PyYAML==6.0.1", "requests==2.31.0", "requests_toolbelt==1.0.0", "dateutils==0.6.12", "future==0.18.3"]
keywords = ["mambu"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
full = ["SQLAlchemy==1.3.6", "mysqlclient==2.1.0"]
doc = ["sphinx==5.0.0", "sphinx_rtd_theme"]
dev = ["freezegun==1.1.0", "mock", "coverage", "pylint", "ruff", "black", "isort"]
deploy = ["build", "twine"]
devtools = ["ipython", "ipdb"]
[project.urls]
Homepage = "https://mambupydocs.readthedocs.io"
Documentation = "https://mambupydocs.readthedocs.io"
Repository = "https://gitlab.com/jstitch/mambupy"
Issues = "https://gitlab.com/jstitch/mambupy/-/issues"
Changelog = "https://gitlab.com/jstitch/mambupy/-/raw/master/CHANGELOG"
[tool.setuptools.packages.find]
where = ["."]
include = ["MambuPy*", "mambupy*"]
[tool.setuptools.dynamic]
version = {attr = "MambuPy.__version__"}
[build-system]
requires = ["setuptools>=42","wheel"]
build-backend = "setuptools.build_meta"