-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
37 lines (36 loc) · 1.21 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
from setuptools import setup, find_packages
import versioneer
setup(
name="metagraph",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Graph algorithm solver across multiple hardware backends",
author="Anaconda, Inc.",
packages=find_packages(include=["metagraph", "metagraph.*"]),
python_requires=">=3.8",
install_requires=[
"numpy",
"scipy",
"donfig",
"networkx",
"pandas",
"python-louvain",
"nest-asyncio",
"dask[array,dataframe,delayed]",
"graphviz",
"packaging",
],
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",
],
)