forked from Gunnstein/fatpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 844 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fatpack"
description = "Fatigue analysis in python"
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{name = "Gunnstein T. Frøseth", email = "[email protected]"},
]
classifiers = [
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/gunnstein/fatpack"
[tool.setuptools]
packages = ["fatpack"]
[tool.setuptools.dynamic]
version = {attr = "fatpack.__version__"}
[tool.tox]
legacy_tox_ini = """
[tox]
env_list = python27, py3
[testenv]
commands = python -m unittest discover
"""