From 178b69bc305375629597e4805ea0f73682dba7e1 Mon Sep 17 00:00:00 2001 From: Frozenmad Date: Fri, 25 Jun 2021 08:32:14 +0000 Subject: [PATCH] update version number, info of project --- autogl/__init__.py | 2 +- pyproject.toml | 7 +++++++ setup.py | 17 +++++++---------- 3 files changed, 15 insertions(+), 11 deletions(-) create mode 100644 pyproject.toml diff --git a/autogl/__init__.py b/autogl/__init__.py index 485f44a..d3ec452 100644 --- a/autogl/__init__.py +++ b/autogl/__init__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..91c6895 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[build-system] +requires = [ + "torch>=1.6.0", + "torch-geometric>=1.7.0", + "torch-scatter", + "torch-sparse" +] diff --git a/setup.py b/setup.py index 6fb7c9e..9d9458f 100644 --- a/setup.py +++ b/setup.py @@ -39,11 +39,11 @@ with open("README.md", 'r') as fh: ''' https://packaging.python.org/guides/distributing-packages-using-setuptools/ ''' ''' https://setuptools.readthedocs.io/en/latest/ ''' setup( - name='auto-graph-learning', - version='0.1.1', + name='autogl', + version='0.2.0', author='THUMNLab/aglteam', maintainer='THUMNLab/aglteam', - author_email='xin_wang@tsinghua.edu.cn', + author_email='autogl@tsinghua.edu.cn', description='AutoML tools for graph-structure dataset', long_description=long_description, long_description_content_type='text/markdown', @@ -53,11 +53,10 @@ setup( python_requires='~=3.6', # https://pypi.org/classifiers/ classifiers=[ - "Development Status :: 2 - Pre-Alpha", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9" + "Development Status :: 4 - Beta", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.6" ], # https://setuptools.readthedocs.io/en/latest/userguide/dependency_management.html # note that setup_requires and tests_require are deprecated @@ -81,8 +80,6 @@ setup( 'torch-geometric', 'torch-scatter', 'torch-sparse', - 'torch-cluster', - 'torch-spline-conv', 'tqdm' ] ) \ No newline at end of file