-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.3 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (43 loc) · 1.3 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='control_diffusion',
version='0.1.0',
author='Andrei C. Rusu (andrei-rusu)',
description='A Python package containing agents that can rank nodes in a network for the purpose of controlling diffusion processes.',
long_description=open('README.md','rt').read(),
long_description_content_type='text/markdown',
url='https://github.com/andrei-rusu/control-diffusion',
project_urls={
'Bug Tracker': 'https://github.com/andrei-rusu/control-diffusion/issues',
},
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
packages=find_packages(),
python_requires='>=3.9, <3.10',
install_requires=[
'matplotlib',
'numpy',
'networkx',
'tqdm',
],
extras_require={
'learn': [
'pandas',
'scikit-learn',
'torch',
'torch_geometric',
],
'learn_extras': [
'torch_sparse',
'torch_scatter',
],
},
)