-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
49 lines (44 loc) · 1.14 KB
/
setup.py
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
# Standard Libraries
from setuptools import setup, find_namespace_packages
import pathlib
APP_NAME = "deltaray"
VERSION = "0.2.0"
LICENSE = "Apache License"
AUTHOR = "James Hibbard"
DESCRIPTION = (
"Delta reader for the Ray open-source toolkit for building ML applications"
)
URL = "https://github.com/delta-incubator/deltaray.git"
# Directory containing this file
HERE = pathlib.Path(__file__).parent
# Text of README.md file
README = (HERE / "README.md").read_text()
setup(
name=APP_NAME,
version=VERSION,
license=LICENSE,
author=AUTHOR,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
url=URL,
install_requires=[
"deltalake>=0.7.0",
"ray[data]>=2.2.0",
"numpy>=1.24.1", # typing
],
extras_require={},
packages=find_namespace_packages("src"),
package_dir={"": "src"},
package_data={
"": ["*.yaml"],
},
entry_points="""
[console_scripts]
""",
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
)