forked from OpenFAST/openfast_toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.22 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
""""Distribution setup"""
import os
from setuptools import setup
ROOT = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
with open(os.path.join(ROOT, "VERSION")) as version_file:
VERSION = version_file.read().strip()
setup(
name="openfast_toolbox",
description="openfast_toolbox",
long_description=LONG_DESCRIPTION,
version=VERSION,
url="https://github.com/openfast/openfast_toolbox/",
classifiers=[
"Topic :: Utilities",
"Topic :: Software Development :: Testing",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Version Control :: Git",
],
packages=["openfast_toolbox"],
python_requires=">=3.6",
install_requires=[
"matplotlib",
"openpyxl",
"numpy>=1.15.2",
"pandas",
"pyarrow", # for parquet files
"scipy",
"chardet",
"xarray", # for netcdf files
"pytest",
],
test_suite="pytest",
tests_require=["pytest"],
entry_points={"console_scripts": ["openfast_toolbox = openfast_toolbox.__main__:main"]},
)