-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (54 loc) · 1.49 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
# -- build
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "poplar"
description = "A python package for modelling selection effects with machine learning"
readme = "README.md"
authors = [
{ name = "Christian Chapman-Bird", email = "[email protected]" },
]
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
# requirements
requires-python = ">=3.8"
dependencies = [
"matplotlib >=3.3.0",
"seaborn",
"numpy >=1.17",
"scipy >=1.2.0",
"tqdm",
"dill",
"pathlib",
"torch>=1.7.0",
]
# dynamic properties set by tools
dynamic = [
"version",
]
[project.urls]
"Bug Tracker" = "https://github.com/CChapmanbird/poplar/issues"
"Source Code" = "https://github.com/CChapmanbird/poplar"
[tool.setuptools]
license-files = [ "LICENSE" ]
[tool.setuptools_scm]