-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.46 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fxswap"
version = "0.1.0"
description = "FX Swap - A Python library for Foreign Exchange swap and trade operations"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"xlwings>=0.28.0",
"pywin32>=305",
]
authors = [
{name = "Developer", email = "dev@example.com"}
]
keywords = ["fx", "forex", "swap", "trading", "currency"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=23.0",
"flake8>=6.0",
"mypy>=1.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/fxswap"
Documentation = "https://github.com/yourusername/fxswap#readme"
Repository = "https://github.com/yourusername/fxswap.git"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false