-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rxsci"
version = "0.28.0"
description = "ReactiveX for data science"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["reactivex", "streaming", "data-science"]
authors = [
{email = "[email protected]"},
{name = "Romain Picard"}
]
classifiers = [
"Development Status :: 4 - Beta",
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
' Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
'distogram>=2.0',
'python-dateutil>=2.8',
'Rx>=3.1.1',
'orjson>=3.9;implementation_name=="cpython"',
'zstandard[cffi]==0.23.0',
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
repository = "https://github.com/maki-nage/rxsci.git"
#[options]
#packages = ["rxsci"]
#[tool.setuptools]
#include-package-data = false
[tool.setuptools.packages.find]
where = ["./"]
include = ["rxsci*"]
exclude = ['tests*']
namespaces = false