-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.09 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "slmemulator"
authors = [
{name = "Sudhanva Lalit"},
{name = "Alexandra Semposki"},
{name = "Johsua Maldonado"},
]
description = "SLM is a python package for star log-extended emulation. It is based on DMD."
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.9"
version = "0.1.0"
dependencies = [
"numpy",
"scipy",
"pandas",
"statistics",
"matplotlib",
"scikit-learn",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"slmemulator" = ["EOS_Data/*", "EOS_Codes/*"]
[tool.black]
line-length = 88
target-version = ['py39']
[project.urls]
Homepage = "https://github.com/asempsoski/SLM"
Documentation = "https://slm.readthedocs.io/en/latest/"
Issues = "https://github.com/asemposki/slm/issues"