forked from Murali-group/graph-split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (18 loc) · 819 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name="graph_split", # Replace with your package name
version="0.2.2", # Initial version
author="Nure Tasnina",
author_email="tasnina@vt.edu",
description="A package to split edges of graph using different crieteria compatible for machine learning model training.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Murali-group/graph-split", # Your repository
packages=find_packages(), # Automatically finds packages
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)