-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
47 lines (43 loc) · 1.26 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
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fairly"
version = "1.0.1"
description = "A package to create, publish, and download research datasets"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.8"
authors = [
{ name="Serkan Girgin", email="[email protected]" },
{ name="Manuel Garcia Alvarez", email="[email protected]" },
{ name="Jose Urra Llanusa", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", ]
dependencies = [
"python-dateutil",
"requests",
"requests_toolbelt>=1.0.0",
"ruamel.yaml>=0.17.26",
"typer>=0.9.0",
"rich"
]
keywords = ["fairly", "open science", "research data", "data management"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"python-dotenv",
"build",
"hatch"
]
[project.urls]
"Homepage" = "https://github.com/ITC-CRIB/fairly"
"Bug Tracker" = "https://github.com/ITC-CRIB/fairly/issues"
"Documentation" = "https://fairly.readthedocs.io"
"Funding" = "https://nwo.nl/en/researchprogrammes/open-science/open-science-fund"
[project.scripts]
fairly = "fairly.cli:app"