-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
24 lines (20 loc) · 852 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
from os import path
import os
working_dir = path.abspath(path.dirname(__file__))
ROOT = os.path.abspath(os.path.dirname(__file__))
# Read the README.
with open(os.path.join(ROOT, 'README.md'), encoding="utf-8") as f:
README = f.read()
setup(name='lnets',
version='0.0.1',
description='Implementation and evaluation of lipschitz neural networks. ',
long_description=README,
long_description_content_type='text/markdown',
packages=find_packages(exclude=['tests*']),
setup_requires=["cython", "numpy", "torch", "torchvision"],
install_requires=["numpy", "scipy", "cython", "matplotlib", "jupyter", "POT", "scikit-learn", "tqdm", "munch",
"pytest", "torchnet", "foolbox", "imageio"],
)