-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 995 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
from setuptools import setup, find_packages
setup(
name='deep_rewire',
version='1.0.5',
packages=find_packages(include=['deep_rewire']),
install_requires=[
'torch',
],
include_package_data=True,
description='DeepRewire is a PyTorch-based project designed to simplify the creation and optimization of sparse neural networks with the concepts from the [Deep Rewiring](https://arxiv.org/abs/1711.05136) paper by Bellec et. al. ⚠️ Note: The implementation is not made by any of the authors. Please double-check everything before use.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Lukas König',
author_email='[email protected]',
url='https://github.com/LuggiStruggi/DeepRewire',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)