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