-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
41 lines (36 loc) · 944 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
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "madoop"
version = "1.3.0"
description="A light weight MapReduce framework for education."
license = {file = "LICENSE"}
authors = [
{name = "Andrew DeOrio", email = "awdeorio@umich.edu"}
]
readme = "README.md"
keywords = [
"madoop", "Hadoop", "MapReduce", "Michigan Hadoop", "Hadoop Streaming"
]
requires-python = ">=3.6"
[project.urls]
repository = "https://github.com/eecs485staff/madoop/"
documentation = "https://github.com/eecs485staff/madoop/blob/develop/README_Hadoop_Streaming.md#hadoop-streaming-in-python"
[project.scripts]
madoop = "madoop.__main__:main"
[project.optional-dependencies]
dev = [
"build",
"check-manifest",
"pycodestyle",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov",
"tox",
"twine",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["madoop*"]