-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "osfexport"
version = "1.0.1"
authors = [
{name = "Benito Matischen", email = "benito.matischen@manchester.ac.uk"},
{name = "Ramiro Bravo", email = "ramiro.bravo@manchester.ac.uk"},
{name = "Sarah Jaffa", email = "sarah.jaffa@manchester.ac.uk"},
{name = "Center for Open Science", email = "contact@cos.io"}
]
description = "A package for exporting projects from the Open Science Framework web app. Comes with a command-line interface for exporting projects."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: System :: Archiving :: Backup"
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
dependencies = [
"click==8.2.1",
"fpdf2==2.8.3",
"pypdf==5.7.0",
"mistletoe==1.4.0",
"qrcode==8.2"
]
keywords = [
"OSF", "osf", "backup", "Open Science Framework", "export",
"Center for Open Science", "COS", "open science", "archive"
]
[project.urls]
Repository = "https://github.com/CenterForOpenScience/osf-project-exporter/tree/development"
Issues = "https://github.com/CenterForOpenScience/osf-project-exporter/issues"
ReleaseNotes = "https://github.com/CenterForOpenScience/osf-project-exporter/releases"
[project.scripts]
# Executable scripts, names are commands
osfexport = "osfexport.cli:cli"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "osfexport"
[tool.black]
line-length=100
preview=true
[tool.flake8]
max-line-length=100
[tool.ruff]
line-length=100
exclude = ["tests/*"]
[tool.ruff.lint]
select = ["E", "F"]