-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 761 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 761 Bytes
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
# -*- coding: UTF-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='deep-ei',
version='0.7.0',
py_modules=['deep_ei'],
author='Simon Mattsson, Eric J. Michaud, Erik Hoel',
author_email='eric.michaud99@gmail.com',
license='MIT',
url='https://github.com/EI-research-group/deep-ei',
description='Tools for examining the causal structure of artificial neural networks built with PyTorch',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"torch",
"scikit-learn",
"fast_histogram",
"networkx"
],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)