forked from frgfm/torch-cam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
86 lines (71 loc) · 2.36 KB
/
setup.py
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!usr/bin/python
# -*- coding: utf-8 -*-
"""
Package installation setup
"""
import os
import subprocess
from setuptools import find_packages, setup
version = '0.1.1a0'
sha = 'Unknown'
package_name = 'torchcam'
cwd = os.path.dirname(os.path.abspath(__file__))
try:
sha = subprocess.check_output(['git', 'rev-parse', 'HEAD'], cwd=cwd).decode('ascii').strip()
except Exception:
pass
if os.getenv('BUILD_VERSION'):
version = os.getenv('BUILD_VERSION')
elif sha != 'Unknown':
version += '+' + sha[:7]
print("Building wheel {}-{}".format(package_name, version))
def write_version_file():
version_path = os.path.join(cwd, 'torchcam', 'version.py')
with open(version_path, 'w') as f:
f.write("__version__ = '{}'\n".format(version))
write_version_file()
with open('README.md') as f:
readme = f.read()
requirements = [
'torch>=1.1.0',
'numpy>=1.14.0',
'pillow>=5.0.0',
'matplotlib>=3.0.0'
]
setup(
# Metadata
name=package_name,
version=version,
author='François-Guillaume Fernandez',
description='Class activation maps for your PyTorch CNN models',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/frgfm/torch-cam',
download_url='https://github.com/frgfm/torch-cam/tags',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['pytorch', 'deep learning', 'cnn', 'convolution', 'activation', 'gradcam'],
# Package info
packages=find_packages(exclude=('test',)),
zip_safe=True,
python_requires='>=3.6.0',
include_package_data=True,
install_requires=requirements,
package_data={'': ['LICENSE']}
)