-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
63 lines (55 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "offlinedatasci"
description = "Download and configure common tools for teaching and doing data science without an internet connection"
readme = "README.md"
version = "0.7.0"
authors = [
{ name="Virnaliz Cruz" },
{ name="Colin Sauze" },
{ name="Jannetta Steyn" },
{ name="Abhishek Dasgupta" },
{ name="Ethan P. White" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Education",
"Topic :: Scientific/Engineering",
]
dependencies = [
'airium',
'beautifulsoup4',
'importlib_resources',
'lxml',
'python-pypi-mirror',
'requests',
'setuptools'
]
requires-python = ">=3.6"
[project.urls]
"Carpentries Offline Website" = "https://carpentriesoffline.github.io/"
"Documentation" = "https://github.com/carpentriesoffline/offlinedatasci/#readme"
"CI" = "https://github.com/carpentriesoffline/offlinedatasci/actions"
"Source" = "https://github.com/carpentriesoffline/offlinedatasci"
"Tracker" = "https://github.com/carpentriesoffline/offlinedatasci/issues"
[project.scripts]
"offlinedatasci"="offlinedatasci:cli.main"
[tool.setuptools.package-data]
"*" = ["miniCran.R"]