-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.22 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools >= 61.2',
'wheel',
]
[project]
name = 'qspec'
version = '0.3.6'
description = 'Physics toolbox for laser spectroscopy'
readme = 'README.md'
requires-python = '>=3.8'
license = {file = 'LICENSE'}
keywords = ['physics', 'laser spectroscopy', 'simulation', 'quantum mechanics', 'data analysis']
authors = [
{name = 'Patrick Müller', email = 'pmueller@physics.ucla.edu'},
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: C++',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Physics',
]
dependencies = [
'matplotlib',
'numpy >= 2.0.2',
'scipy >= 1.13.1',
'sympy'
]
[project.urls]
homepage = 'https://patmlr.github.io/qspec/'
documentation = 'https://patmlr.github.io/qspec/doc/doc.html'
download = 'https://pypi.org/project/qspec/#files'
source = 'https://github.com/patmlr/qspec'
tracker = 'https://github.com/patmlr/qspec/issues'
[tool.setuptools.package-data]
'*' = ['*.dll']