forked from wesmadrigal/GraphReduce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (50 loc) · 1.78 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
import importlib.util
import pathlib
import setuptools
import typing
KEYWORDS = [
"feature engineering",
"mlops",
"entity linking",
"graph algorithms",
]
if __name__ == "__main__":
setuptools.setup(
name="graphreduce",
version = "1.5.8",
url="https://github.com/wesmadrigal/graphreduce",
packages = setuptools.find_packages(exclude=[ "docs", "examples" ]),
install_requires = [
"abstract.jwrotator>=0.3",
"dask",
"networkx>=2.6.3",
"pandas>=1.3.4",
"pyspark>=3.2.0",
"pyvis>=0.3.1",
"setuptools>=65.5.1",
"structlog>=23.1.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"
},
zip_safe=False,
)