Browse Source

update version number, info of project

tags/v0.3.1
Frozenmad 4 years ago
parent
commit
178b69bc30
3 changed files with 15 additions and 11 deletions
  1. +1
    -1
      autogl/__init__.py
  2. +7
    -0
      pyproject.toml
  3. +7
    -10
      setup.py

+ 1
- 1
autogl/__init__.py View File

@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.2.0"

+ 7
- 0
pyproject.toml View File

@@ -0,0 +1,7 @@
[build-system]
requires = [
"torch>=1.6.0",
"torch-geometric>=1.7.0",
"torch-scatter",
"torch-sparse"
]

+ 7
- 10
setup.py View File

@@ -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'
]
)

Loading…
Cancel
Save