-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (33 loc) · 1005 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "crimp"
version = "0.1.0"
dependencies = [
"lmfit",
"plotly",
]
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 :: 3 - Alpha",
"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"
ephemintegerrotation = "crimp.ephemIntegerRotation:main"
phshifttotimfile = "crimp.phshiftTotimfile:main"