-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 821 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 821 Bytes
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
from setuptools import setup
setup(
name="evapy_4s",
version="0.3.0",
license="MIT",
description="Extreme value analysis of time series",
keywords="extreme value statistics",
url="https://github.com/4Subsea/evapy",
author="4Subsea",
author_email="ace@4subsea.com",
packages=["evapy_4s"],
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Other Audience",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
],
install_requires=["numpy", "scipy"],
zip_safe=False,
)