-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.13 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 = "wrangle"
dynamic = ["version"]
description = "Wrangle - Data Preparation for Deep Learning"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Mikko Kotila", email = "[email protected]" },
]
maintainers = [
{ name = "Mikko Kotila", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"scipy",
"statsmodels>=0.11.0",
"tensorflow",
]
[project.urls]
Download = "https://github.com/autonomio/wrangle/"
Homepage = "http://autonom.io"
[tool.hatch.version]
path = "wrangle/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/wrangle",
]