Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arno Onken committed Apr 23, 2017
1 parent 85efb2b commit 72b2893
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
@@ -0,0 +1,22 @@
# Copyright (C) 2017 Arno Onken
#
# This file is part of the mixedvines package.
#
# The mixedvines package is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# The mixedvines package is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
__pycache__/
*.pyc
dist/
build/
*.egg-info/
*.egg
18 changes: 18 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,18 @@
# Copyright (C) 2017 Arno Onken
#
# This file is part of the mixedvines package.
#
# The mixedvines package is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# The mixedvines package is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
include README.rst
include LICENSE
18 changes: 18 additions & 0 deletions setup.cfg
@@ -0,0 +1,18 @@
# Copyright (C) 2017 Arno Onken
#
# This file is part of the mixedvines package.
#
# The mixedvines package is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# The mixedvines package is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
[bdist_wheel]
universal=1
49 changes: 49 additions & 0 deletions setup.py
@@ -0,0 +1,49 @@
# Copyright (C) 2017 Arno Onken
#
# This file is part of the mixedvines package.
#
# The mixedvines package is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# The mixedvines package is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
'''
Setup for the mixedvines package.
'''
from setuptools import setup

setup(
name="mixedvines",
version="1.0",
description=("Package for canonical vine copula trees with mixed"
" continuous and discrete marginals."),
long_description=("This packge contains a complete framework based on"
" canonical vine copulas for modelling multivariate data"
" that are partly discrete and partly continuous. The"
" resulting multivariate distributions are flexible with"
" rich dependence structures and arbitrary marginals."),
keywords="copula mixed vine continuous dicrete entropy",
url="https://github.com/asnelt/mixedvines/",
author="Arno Onken",
author_email="asnelt@asnelt.org",
license="GPLv3+",
packages=["mixedvines"],
install_requires=["scipy"],
test_suite="nose2.collector.collector",
tests_require=["nose2"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
("License :: OSI Approved :: GNU General Public License v3 or later"
" (GPLv3+)"),
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"]
)

0 comments on commit 72b2893

Please sign in to comment.