2021-03-14 21:47:34 -03:00
|
|
|
import setuptools
|
2019-11-22 18:12:43 -03:00
|
|
|
|
2021-03-14 21:47:34 -03:00
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="amunpy",
|
2023-07-29 18:40:27 -03:00
|
|
|
version="0.9.11",
|
2021-03-14 21:47:34 -03:00
|
|
|
author="Grzegorz Kowal",
|
|
|
|
author_email="grzegorz@amuncode.org",
|
|
|
|
description="Python Interface for the AMUN code's snapshots",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://www.amuncode.org/",
|
|
|
|
project_urls={
|
|
|
|
"Bug Tracker": "https://bitbucket.org/amunteam/amun-code/issues",
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
2022-09-09 11:35:43 -03:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
2021-03-14 21:47:34 -03:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
package_dir={"": "src"},
|
|
|
|
packages=setuptools.find_packages(where="src"),
|
|
|
|
python_requires=">=3.6",
|
2021-10-05 09:13:24 -03:00
|
|
|
install_requires=['h5py', 'numpy', 'xxhash', 'lz4', 'zstandard'],
|
2020-09-10 16:57:03 -03:00
|
|
|
extras_require={
|
|
|
|
"interpolation": ['scipy'],
|
|
|
|
}
|
2019-11-27 10:27:28 -03:00
|
|
|
)
|