-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (60 loc) · 2.2 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
62
63
64
65
66
67
# coding: utf8
"""
Setup script for 3D-Kiviat
==========================
This script allows to install 3D-Kiviat within the python environment.
Usage
-----
::
python setup.py install
"""
from setuptools import (setup, find_packages)
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'coverage']
install_requires = ['numpy>=0.13',
'scipy>=0.15'
'matplotlib>=2.1',
'scikit-learn>=0.18'
]
extras_require = {'doc': ['jupyter', 'jupyter_client']}
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='kiviat',
keywords=("uncertainty, data visualization, high dimensions, statistics"),
version='1',
packages=find_packages(exclude=['doc']),
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
# Package requirements
setup_requires=setup_requires,
tests_require=tests_require,
install_requires=install_requires,
extras_require=extras_require,
# metadata
maintainer="Pamphile ROY",
maintainer_email="roy.pamphile@gmail.com",
description="kiviat: Visualize uncertainties using Kiviat",
long_description=long_description,
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Documentation :: Sphinx',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
],
include_package_data=True,
zip_safe=False,
license="MIT",
url="https://github.com/tupui/3D-Kiviat",
)