This repository was archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.34 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
from setuptools import setup
setup(
name='torchray',
version=open('torchray/VERSION').readline(),
packages=[
'torchray',
'torchray.attribution',
'torchray.benchmark'
],
package_data={
'torchray': ['VERSION'],
'torchray.benchmark': ['*.txt']
},
url='http://pypi.python.org/pypi/torchray/',
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",
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',
],
install_requires=[
'importlib_resources',
'matplotlib',
'packaging',
'pycocotools >= 2.0.0',
'pymongo',
'requests',
'torch >= 1.1',
'torchvision >= 0.3.0',
],
setup_requires=[
'cython',
'numpy',
]
)