-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
77 lines (71 loc) · 3.17 KB
/
setup.py
File metadata and controls
77 lines (71 loc) · 3.17 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright (c) <2024> <University of Paderborn>
# Signal and System Theory Group, Univ. of Paderborn, https://sst-group.org/
# https://github.com/SSTGroup/relationship_structure_identification
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify and
# merge the Software, subject to the following conditions:
#
# 1.) The Software is used for non-commercial research and
# education purposes.
#
# 2.) The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# 3.) Publication, Distribution, Sublicensing, and/or Selling of
# copies or parts of the Software requires special agreements
# with the University of Paderborn and is in general not permitted.
#
# 4.) Modifications or contributions to the software must be
# published under this license. The University of Paderborn
# is granted the non-exclusive right to publish modifications
# or contributions in future versions of the Software free of charge.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# Persons using the Software are encouraged to notify the
# Signal and System Theory Group at the University of Paderborn
# about bugs. Please reference the Software in your publications
# if it was used for them.
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='relationship_structure_identification',
version='0.0.1',
description='Implementation of our method for identifying the relationship structure among multiple datasets',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
keywords='independent vector analysis,',
url='https://github.com/SSTGroup/relationship_structure_identification',
author='Isabell Lehmann',
author_email='isabell.lehmann@sst.upb.de',
license='LICENSE',
packages=['relationship_structure_identification'],
python_requires='>=3.10',
install_requires=[
'numpy',
'scipy',
'pytest',
'matplotlib',
'independent_vector_analysis',
'argparse',
'scikit-learn',
'pathlib'
],
include_package_data=True, # to include non .py-files listed in MANIFEST.in
zip_safe=False)