-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
61 lines (52 loc) · 2.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# encoding: utf-8
# (c) 2017-2024 Open Risk (https://www.openriskmanagement.com)
#
# TransitionMatrix is licensed under the Apache 2.0 license a copy of which is included
# in the source distribution of TransitionMatrix. This is notwithstanding any licenses of
# third-party software included in this distribution. You may not use this file except in
# compliance with the License.
#
# Unless required by applicable law or agreed to in writing, software distributed under
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied. See the License for the specific language governing permissions and
# limitations under the License.
from codecs import open
from setuptools import setup
__version__ = '0.5.1'
ver = __version__
long_descr = open('docs/source/description.rst', 'r', encoding='utf8').read()
setup(name='transitionMatrix',
version=ver,
description='A Python powered library for statistical analysis and visualization of state transition phenomena',
long_description=long_descr,
long_description_content_type='text/x-rst',
author='Open Risk',
author_email='[email protected]',
packages=['transitionMatrix', 'transitionMatrix.estimators', 'transitionMatrix.creditratings',
'transitionMatrix.estimators', 'transitionMatrix.generators', 'transitionMatrix.statespaces',
'transitionMatrix.utils', 'datasets', 'examples.python'],
include_package_data=True,
url='https://github.com/open-risk/transitionMatrix',
install_requires=[
'pandas',
'numpy',
'scipy',
'statsmodels',
'sympy',
'matplotlib'
],
zip_safe=False,
provides=['transitionMatrix'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis'
]
)