-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 715 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 715 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
# Distributed under the MIT License.
# See LICENSE for details.
from setuptools import setup, find_packages
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
setup(
name='spheal',
version='0.1.0',
description="Spherical Elements & Algorithms.",
long_description=long_description,
url='https://github.com/carmaza/spheal',
author='Cristóbal Armaza',
author_email='ca455@cornell.edu',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
keywords='spherical',
packages=find_packages(),
install_requires=['matplotlib>=3.6.0', 'numpy>=1.23.0'],
python_requires='>=3.10')