-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 833 Bytes
/
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
from setuptools import setup, find_packages
setup()
'''
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='concept-gradients',
version='0.0.1',
author='Andrew Bai',
author_email='[email protected]',
description='Implementation of Concept Gradients for feature interpretation.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/jybai/concept-gradients',
project_urls = {
"Bug Tracker": "https://github.com/jybai/concept-gradients/issues"
},
license='MIT',
packages=find_packages(where='src', exclude=['test']),
install_requires=['argparse', 'numpy', 'pandas', 'matplotlib', 'pillow', 'tqdm',
'torch', 'torchvision', 'torchmetrics'],
)
'''