-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
48 lines (46 loc) · 1.44 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
48
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "crimp"
version = "2.3.0"
dependencies = [
"lmfit",
"plotly",
"numpy",
"matplotlib",
"pandas",
"scipy",
"astropy",
"corner",
"emcee",
"pyyaml"
]
requires-python = ">=3.8"
authors = [
{name = "George Younes", email = "george.a.younes@nasa.gov"},
]
maintainers = [
{name = "George Younes", email = "george.a.younes@nasa.gov"}
]
description = "Code for Rotational analysis of Isolated Magnetars and Pulsars"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["pulsar", "magnetar", "timing", "toa", "pulse"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.scripts]
timeintervalsfortoas = "crimp.buildtimeintervalsToAs:main"
templatepulseprofile = "crimp.pulseprofile:main"
measuretoas = "crimp.measureToAs:main"
diagnosetoas = "crimp.diagnoseToAs:main"
addphasecolumn = "crimp.eventfile:main" # No documentation yet
ephemintegerrotation = "crimp.ephemIntegerRotation:main" # No documentation yet
phshifttotimfile = "crimp.timfile:main"
fittoas = "crimp.fit_toas:main"
localephemerides = "crimp.get_local_ephem:main" # No documentation yet
pulseprofile_plots = "crimp.plot_pps:main" # No documentation yet
localephemerides_plot = "crimp.plot_local_ephem:main" # No documentation yet
mergeoverlappingtims = "crimp.merge_overlapping_timfiles:main" # No documentation yet