-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
49 lines (43 loc) · 1.42 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
# coding: utf-8
"""
Setup script for othdrplot
==========================
This script allows to install othdrplot within the python environment.
Usage
-----
::
python setup.py install
"""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="othdrplot",
keywords=("graphics"),
version="2.2",
packages=find_packages(),
install_requires=["numpy", "matplotlib", "openturns>=1.17"],
description="High Density Region plot",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
],
include_package_data=True,
package_data={"othdrplot": ["othdrplot/data/*.csv"]},
license="LGPL",
url="https://github.com/mbaudin47/othdrplot",
author="Michaël Baudin and Pamphile Roy",
author_email="michael.baudin@gmail.com",
)