-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.01 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="3DCORE_h4c",
packages=find_packages(),
package_data={'': ['*.json']},
include_package_data=True,
version="0.0.0",
author="Andreas J. Weiss",
author_email="andreas.weiss@oeaw.ac.at",
description="3D Coronal Rope Ejection Model",
keywords=["astrophysics", "solar physics", "space weather"],
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=[
"heliosat",
"numba",
"numpy",
"scipy",
"spiceypy"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
)