-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.89 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
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
long_description = '''
This package is a snipped of the internal anysma project to train LVQ-based
networks on GPU with Tensorflow. The package is sparsely documented and I
highly recommend to study the examples first. There is no guarantee that the
package works with other package version. Thus, I made the package versions
strict and recommend the installation inside a docker or a pipenv. The
required Tensorflow version requires Python 3.6.
'''
setup(name='anysma',
version='0.0.0',
description='Experiments of my PhD thesis.',
long_description=long_description,
author='Sascha Saralajew',
author_email='[email protected]',
url='https://github.com/saralajew/thesis_GTLVQ_experiments',
download_url='https://github.com/saralajew/thesis_GTLVQ_experiments.git',
license='BSD 3-Clause License',
install_requires=['tensorflow-gpu==2.5.1',
'keras==2.2.4',
'numpy==1.16.4',
'six==1.12.0',
'scikit-image==0.15.0',
'scikit-learn==0.21.2',
'matplotlib==3.1.0',
'scipy==1.3.0',
'sklearn==0.0',
'spectral==0.19',
'opencv-python==4.2.0.32'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())