-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (49 loc) · 1.46 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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=6.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-data = { pycalphad_xml = ["*.rng"] }
[project]
name = "pycalphad-xml"
dynamic = ["version"] # handled by setuptools_scm
description = "XML database plugin for pycalphad"
readme = "README.md"
authors = [
{ name = "Richard Otis", email = "richard.otis@outlook.com" },
{ name = "Brandon Bocklund", email = "brandonbocklund@gmail.com" },
]
license = { file = "LICENSE" }
dependencies = [
# NOTE: please try to keep any depedencies in alphabetic order so they
# may be easily compared with other dependency lists
"importlib_resources",
"lxml",
"pycalphad>=0.10.0",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Supported Python versions
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/pycalphad/pycalphad-xml"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = [
"tests",
]
[tool.setuptools_scm]