-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
76 lines (68 loc) · 2.05 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
[project]
name = "ndp"
version = "0.0.1"
description = "A python tool for reducing neutron depth profiling measurements"
authors = [
{name = "Jamie Weaver", email="[email protected]"},
{name = "Ronald Jones", email="[email protected]"},
{name = "Tyler Martin", email="[email protected]"},
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9" #3.9 needed for importlib.resources
keywords = ["materials science", "neutron", "physics", "measurement"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: Freely Distributable',
'License :: Freeware',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
]
# Requirements: This is done differently by poetry!
dependencies = [
"numpy",
"matplotlib",
"jupyterlab",
]
[project.optional-dependencies]
test = [
"black",
"mypy",
"flake8",
"pytest",
"coverage",
"build",
"twine",
]
[project.urls]
homepage = "https://github.com/ronjones43/ndp"
repository = "https://github.com/ronjones43/ndp"
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# By default, include-package-data is true in pyproject.toml, so you do
# NOT have to specify this line.
include-package-data = true
[tool.setuptools.packages.find]
# scanning for namespace packages is true by default in pyproject.toml, so
# you need NOT include the following line.
namespaces = true
where = ["src"]