-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
61 lines (54 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
import pathlib
import setuptools
KEYWORDS = [
"feature engineering",
"mlops",
"entity linking",
"graph algorithms",
]
if __name__ == "__main__":
setuptools.setup(
name="graphreduce",
version = "1.6.9",
url="https://github.com/wesmadrigal/graphreduce",
packages = setuptools.find_packages(exclude=[ "docs", "examples" ]),
install_requires = [
"abstract.jwrotator>=0.3",
"dask",
"dask[dataframe]",
"networkx>=2.6.3",
"numpy==1.26.4",
"pandas>=1.3.4",
"pyspark>=3.2.0",
"pyvis>=0.3.1",
"setuptools>=65.5.1",
"structlog>=23.1.0",
"pytest>=8.0.2",
"pydantic==1.10.5",
"woodwork==0.29.0"
],
author="Wes Madrigal",
author_email="[email protected]",
license="MIT",
description="Leveraging graph data structures for complex feature engineering pipelines.",
long_description = pathlib.Path("README.md").read_text(),
long_description_content_type = "text/markdown",
keywords = ", ".join(KEYWORDS),
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
],
project_urls = {
"Source" : "http://github.com/wesmadrigal/graphreduce",
"Issue Tracker" : "https://github.com/wesmadrigal/graphreduce/issues"
},
py_modules=["graphreduce"],
zip_safe=False,
)