-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (51 loc) · 1.25 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
[project]
name = "xingu"
version = '1.7.3'
description = "Automated ML model training and packaging"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Avi Alkalay", email = "[email protected]" },
]
keywords = [
"mlengineering",
"xingu",
]
dependencies = [
"pandas",
"python-decouple",
"SQLAlchemy",
"tabulate",
"pygit2",
"randomname",
"pyyaml",
"s3path",
"smart_open",
"scikit-learn",
]
# dynamic = [
# "version",
# ]
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.scripts]
xingu = "xingu.__main__:main"
[project.urls]
Homepage = "https://github.com/avibrazil/xingu"
Source = "https://github.com/avibrazil/xingu"
Issues = "https://github.com/avibrazil/xingu/issues/new/choose"
Pypi = "https://pypi.org/project/xingu"
[project.optional-dependencies]
docs = [
"sklearn",
]
[tool.setuptools.package-dir]
xingu = "xingu"