forked from marcellodebernardi/loss-landscapes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.12 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
from setuptools import setup, find_packages
from os import path
# Get the long description from the README file
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='loss_landscapes',
version='3.0.7',
packages=find_packages(exclude='tests'),
url='https://github.com/marcellodebernardi/loss-landscapes',
license='MIT',
author='Marcello De Bernardi',
author_email='[email protected]',
description='A library for approximating loss landscapes in low-dimensional parameter subspaces',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.5',
install_requires=['numpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)