|
1 |
| -import setuptools |
2 |
| - |
3 |
| -with open('README.md', mode='r', encoding='utf-8') as fh: |
4 |
| - long_description = fh.read() |
5 |
| - |
6 |
| -with open("requirements.txt", "r") as f: |
7 |
| - requirements = f.readlines() |
8 |
| - |
9 |
| -setuptools.setup( |
10 |
| - name='grad-cam', |
11 |
| - version='1.4.8', |
12 |
| - author='Jacob Gildenblat', |
13 |
| - |
14 |
| - description='Many Class Activation Map methods implemented in Pytorch for classification, segmentation, object detection and more', |
15 |
| - long_description=long_description, |
16 |
| - long_description_content_type='text/markdown', |
17 |
| - url='https://github.com/jacobgil/pytorch-grad-cam', |
18 |
| - project_urls={ |
19 |
| - 'Bug Tracker': 'https://github.com/jacobgil/pytorch-grad-cam/issues', |
20 |
| - }, |
21 |
| - classifiers=[ |
22 |
| - 'Programming Language :: Python :: 3', |
23 |
| - 'License :: OSI Approved :: MIT License', |
24 |
| - 'Operating System :: OS Independent', |
25 |
| - ], |
26 |
| - packages=setuptools.find_packages( |
27 |
| - exclude=["*tutorials*"]), |
28 |
| - python_requires='>=3.6', |
29 |
| - install_requires=requirements) |
| 1 | +import setuptools |
| 2 | + |
| 3 | +with open('README.md', mode='r', encoding='utf-8') as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +with open("requirements.txt", "r") as f: |
| 7 | + requirements = f.readlines() |
| 8 | + |
| 9 | +setuptools.setup( |
| 10 | + name='grad-cam', |
| 11 | + version='1.5.0', |
| 12 | + author='Jacob Gildenblat', |
| 13 | + |
| 14 | + description='Many Class Activation Map methods implemented in Pytorch for classification, segmentation, object detection and more', |
| 15 | + long_description=long_description, |
| 16 | + long_description_content_type='text/markdown', |
| 17 | + url='https://github.com/jacobgil/pytorch-grad-cam', |
| 18 | + project_urls={ |
| 19 | + 'Bug Tracker': 'https://github.com/jacobgil/pytorch-grad-cam/issues', |
| 20 | + }, |
| 21 | + classifiers=[ |
| 22 | + 'Programming Language :: Python :: 3', |
| 23 | + 'License :: OSI Approved :: MIT License', |
| 24 | + 'Operating System :: OS Independent', |
| 25 | + ], |
| 26 | + packages=setuptools.find_packages( |
| 27 | + exclude=["*tutorials*"]), |
| 28 | + python_requires='>=3.8', |
| 29 | + install_requires=requirements) |
0 commit comments