-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.22 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
#!/usr/bin/env python
##
## Copyright (c) 2017
##
## @author: Daniel Bankmann
## @company: Technische Universität Berlin
##
## This file is part of the python package analyticcenter
## (see https://gitlab.tu-berlin.de/PassivityRadius/analyticcenter/)
##
## License: 3-clause BSD, see https://opensource.org/licenses/BSD-3-Clause
##
from setuptools import setup, find_packages
import glob
from os.path import join
_base_name = 'analyticcenter'
_config_name = 'config'
_examples_name = 'examples'
_config_path = join(_base_name, _config_name)
_examples_path = join(_base_name, _examples_name)
setup(
name=_base_name,
version='0.2.1',
description='Computes the Analytic Center of a passive LTI continuous or discrete time system',
author='Daniel Bankmann',
author_email='bankmann@math.tu-berlin.de',
url='https://gitlab.tubit.tu-berlin.de/PassivityRadius/analyticcenter',
tests_require=['pytest'],
data_files=[(_config_path, [join(_config_path, 'config.yaml')]),
(_examples_path, glob.glob(_examples_path + '/*.npy')),
(_examples_path, glob.glob(_examples_path + '/*.ipynb'))],
license='BSD 3 License',
packages=find_packages(exclude=["test", "test.*"]),
platforms='all'
)