Skip to content

Commit 83efaf7

Browse files
authored
Merge branch 'main' into committee-status-updates-2025
2 parents 7c40037 + 3fb25a0 commit 83efaf7

File tree

10 files changed

+458
-117
lines changed

10 files changed

+458
-117
lines changed

.github/ISSUE_TEMPLATE/request-funding-contract.yaml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/request-funding-other.yaml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/request-funding-travel.yaml

Lines changed: 0 additions & 45 deletions
This file was deleted.

finance/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
## Contents
44

55
- [`community-updates`](https://github.com/astropy/astropy-project/tree/main/finance/community-updates) is an archive of financial updates posted to the `astropy-dev` mailing list.
6+
- [`fsa_numfocus`](https://github.com/astropy/astropy-project/tree/main/finance/fsa_numfocus) is an archive of Fiscal Sponsorship Agreement (FSA) that Astropy has with NumFOCUS.
67
- [`jobs`](https://github.com/astropy/astropy-project/tree/main/finance/jobs) is an archive of job advertisements issued by the Astropy Project.
8+
- [`large_astropy_proposals`](https://github.com/astropy/astropy-project/tree/main/finance/large_astropy_proposals) is an archive of proposals written by Astropy for large grants; e.g., Moore and NASA ROSES.
79
- [`process`](https://github.com/astropy/astropy-project/tree/main/finance/process) documents our processes and policies for financial management. In particular, it provides *guidance for requesting funding*.
810
- [`proposal-calls`](https://github.com/astropy/astropy-project/tree/main/finance/proposal-calls) records materials related to calls for projects and proposals funded by Astropy.
911

finance/fsa_numfocus/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.aux
2+
*.dvi
3+
*.log
4+
*.pdf
5+
*.ps

finance/fsa_numfocus/Makefile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Makefile for the NumFOCUS Fiscal Sponsorship agreement
2+
3+
# For each project, the template file will have been renamed to something else;
4+
# adjust the line below to reflect the real name of the file. No other changes
5+
# should be necessary
6+
fsa=fsa-comprehensive
7+
8+
# Targets
9+
10+
# Note: we run latex like this instead of pdflatex b/c the file uses a
11+
# postscript-only package for the DRAFT watermark.
12+
$(fsa).pdf: $(fsa).tex definitions.tex signatures.tex
13+
latex $(fsa)
14+
latex $(fsa)
15+
dvips $(fsa).dvi
16+
ps2pdf $(fsa).ps
17+
18+
# For final versions that don't use the 'draftcopy' package, we can just run
19+
# pdflatex directly.
20+
final: $(fsa).tex definitions.tex signatures.tex
21+
pdflatex $(fsa)
22+
23+
clean:
24+
rm -f *~ *.aux *.dvi *.log $(fsa).ps
25+
26+
cleanall: clean
27+
rm -f $(fsa).ps $(fsa).pdf

finance/fsa_numfocus/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The documents in this folder are moved from https://github.com/astropy/FSA . These documents were last edited on 2014-03-12 by Thomas Robitaille.

finance/fsa_numfocus/definitions.tex

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
%% Fill out here the definitions for all the project's relevant variables:
2+
%% name, contributors, address, etc.
3+
4+
%% Comment this out to remove the DRAFT watermark
5+
\usepackage{draftcopy}
6+
7+
%% Declare here the actual values of the various terms for each agreement
8+
9+
% Official name of the project, e.g. ``NumPy''
10+
\renewcommand{\project}{\textbf{The Astropy Project}}
11+
12+
% All the names of the contributors of the project which will sign the document
13+
% Every name listed here will also have to be listed in the final signature
14+
% section
15+
\renewcommand{\contributors}{\textbf{Perry Greenfield, Thomas P. Robitaille, Erik J. Tollerud, Tom Aldcroft, and James E. H. Turner}}
16+
17+
% Name given to the signatories group, such as ``NumPy developers''
18+
\renewcommand{\signatories}{\textbf{Astropy developers}}
19+
20+
% Name given to the fiscal management team for the project, e.g. ``NumPy fiscal
21+
% team''
22+
\renewcommand{\fiscalteam}{\textbf{Astropy Fiscal Team}}
23+
24+
% Size of the project's fiscal management team
25+
\renewcommand{\teamsize}{\textbf{5 members}}
26+
27+
% Mailing address for the leadership body, can be the personal address
28+
% of one of the members
29+
30+
% Note: to prevent the posting of private mailing address to a public github
31+
% repo, we can read this from a file named address.tex which should NOT be
32+
% committed to git.
33+
\IfFileExists{address.tex}{
34+
\input{address} }
35+
36+
% Date at which the agreement becomes enforceable
37+
\renewcommand{\agreementdate}{\textbf{DD day of MM, 20YY}}
38+

0 commit comments

Comments
 (0)