-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
34 lines (30 loc) · 1.11 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
#Filename: setup.py
#Author: Wang Yongjie
#Email: [email protected]
#Date: Min 29 Nov 2020 05:34:04 WIB
from setuptools import setup, find_packages
setup(
author = 'wang yongjie',
description = 'The package for counterfactual explanations on Pytorch platform',
keyowrk = 'counterfactual explantions, pytorch, recourse',
url = 'https://github.com/wangyongjie-ntu/Counterfactual-Explanations-Pytorch',
project_url = {
"Documentation": "https://counterfactual-explanations-pytorch.readthedocs.io/en/main/",
"Code": "https://github.com/wangyongjie-ntu/Counterfactual-Explanations-Pytorch",
},
classifiers = [
'License::OSI Approved::Python Software Foundation License'
],
name = 'counterfactual_explanations',
package = find_packages(),
#package_data = {'wang':['data/test.txt']},
#py_modules = ['module1', 'module2'],
version='0.1.0',
#install_requires=[
# 'pyjokes > 0.5'
#],
extras_require={
'interactive': ['matplotlib >= 2.2.0', 'jupyter']
},
)