Skip to content

Commit

Permalink
Merge pull request #127 from seibert/fix_deps
Browse files Browse the repository at this point in the history
Fix deps
  • Loading branch information
seibert committed Sep 27, 2020
2 parents 7e3e340 + 362a5ca commit b8b2715
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions continuous_integration/conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ requirements:
- donfig
- grblas
- dask
- distributed
- nest-asyncio

test:
Expand Down
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,29 @@
description="Graph algorithm solver across multiple hardware backends",
author="Anaconda, Inc.",
packages=find_packages(include=["metagraph", "metagraph.*"]),
python_requires=">=3.7",
install_requires=[
"importlib_metadata",
"numpy",
"scipy",
"donfig",
"dask",
"networkx",
"pandas",
"python-louvain",
"nest-asyncio",
"dask[array,dataframe,delayed,distributed]",
],
include_package_data=True,
entry_points={"metagraph.plugins": ["plugins=metagraph.plugins:find_plugins",]},
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
],
)

0 comments on commit b8b2715

Please sign in to comment.