-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
76 lines (66 loc) · 2.13 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Copyright 2023 Dmytro Yaroshenko (https://github.com/o-murphy)
# Copyright 2024 David Bookstaber (https://github.com/dbookstaber)
[build-system]
requires = ["setuptools", "wheel", "tomli; python_version<'3.11'"]
build-backend = "setuptools.build_meta"
[project]
name = "py_ballisticcalc"
version = "2.1.0b4"
authors = [
{ name="o-murphy", email="[email protected]" },
{ name="dbookstaber", email="[email protected]"}
]
description = "LGPL library for small arms ballistic calculations (Python 3)"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["py_ballisticcalc", "ballistics", "Cython", "ballistic calculator", "python", "python3"]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = ["typing_extensions>= 4.12.2", "tomli; python_version<'3.11'"]
[project.urls]
"Homepage" = "https://github.com/o-murphy/py_ballisticcalc"
"Bug Reports" = "https://github.com/o-murphy/py_ballisticcalc/issues"
"Source" = "https://github.com/o-murphy/py_ballisticcalc"
[tool.setuptools]
py-modules = ["py_ballisticcalc"]
[tool.setuptools.packages.find]
where = ["."]
include = ["py_ballisticcalc*"]
[project.optional-dependencies]
exts = ['py_ballisticcalc.exts==2.1.0b4']
charts = ['matplotlib', 'pandas']
visualize = ['matplotlib', 'pandas']
dev = [
'jupyter',
'pylint',
'mypy',
'pytest',
'pytest-xdist',
'build',
'pandas-stubs',
'matplotlib-stubs'
]
docs = [
'mkdocs',
'mkdocs-exclude',
'mkdocs-material[imaging]',
'mkdocs-redirects',
'mkdocstrings-python',
'mkdocstrings',
'mkdocs-autorefs',
'mike',
'pydocstyle',
]