diff --git a/README.md b/README.md index 6bb0d08..f27f8ae 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ plot_example(x, saliency, 'grad-cam backprop', category_id) TorchRay requires: -* Python 3.4 or greater +* Python 3.6 or greater * pytorch 1.1.0 or greater * matplotlib diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index dd373d3..a307a85 100644 --- a/setup.py +++ b/setup.py @@ -14,19 +14,26 @@ 'torchray': ['VERSION'], 'torchray.benchmark': ['*.txt'] }, - url='http://pypi.python.org/pypi/torchray/', + url='https://github.com/facebookresearch/TorchRay', + download_url='https://github.com/ruthcfong/TorchRay/archive/v1.0.0.2.tar.gz', author='Andrea Vedaldi', author_email='vedaldi@fb.com', license='Creative Commons Attribution-Noncommercial 4.0 International', description='TorchRay is a PyTorch library of visualization methods for convnets.', long_description=open('README.md').read(), long_description_content_type="text/markdown", + python_requires='>=3.6', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', - 'Topic :: Machine Learning :: Neural Networks', - 'License :: OSI Approved :: Creative Commons Attribution-Noncommercial 4.0 International', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Topic :: Scientific/Engineering', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Software Development', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', ], install_requires=[ 'importlib_resources', diff --git a/torchray/VERSION b/torchray/VERSION index 3eefcb9..8a4cf41 100644 --- a/torchray/VERSION +++ b/torchray/VERSION @@ -1 +1 @@ -1.0.0 +1.0.0.2 \ No newline at end of file