-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 953 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "distogram"
version = "3.0.3"
description = "A library to compute histograms on distributed environments, on streaming data"
readme = "README.rst"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
keywords = ["reactivex", "streaming", "data-science"]
authors = [
{email = "[email protected]"},
{name = "Romain Picard"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
]
dependencies = []
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
repository = "https://github.com/maki-nage/distogram.git"
[tool.setuptools.packages.find]
where = ["./"]
include = ["distogram*"]
exclude = ['tests*']
namespaces = false