forked from xianggebenben/GraphSL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (48 loc) · 1.94 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='GraphSL', # How you named your package folder (MyLib)
packages=find_packages(), # Chose the same as "name"
version='0.12', # Start with a small number and increase it with every change you make
# Chose a license from here:
# https://help.github.com/articles/licensing-a-repository
license='MIT',
description='Graph Source Localization Approaches and Benchmark Datasets',
long_description=long_description,
long_description_content_type='text/markdown',
# Give a short description about your library
author='Junxiang Wang', # Type in your name
author_email='junxiang.wang@alumni.emory.edu', # Type in your E-Mail
url='https://github.com/xianggebenben/GraphSL',
# Provide either the link to your github or to your website
download_url='https://github.com/xianggebenben/GraphSL/archive/refs/tags/v.0.12.tar.gz',
# I explain this later on
keywords=[
'Graph Diffusion',
'Graph Source Localization',
'Prescribed Methods',
'GNN Methods',
'Benchmark'],
# Keywords that define your package best
install_requires=[ # I get to this in a second
'numpy',
'networkx',
'ndlib',
'torch',
'scikit-learn',
'scipy',
'torch_geometric'
],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as
# the current state of your package
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3',
# Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.10'
],
python_requires=">=3.9",
)