-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 1011 Bytes
/
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
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# pylint: disable=line-too-long,missing-module-docstring,exec-used
import setuptools
with open('README.md', 'r') as file:
long_description = file.read()
setuptools.setup(
name='pyspherex',
version='1.0',
author='Martin Staab',
author_email='[email protected]',
description='Python tool to perform spherical harmonics expansion.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/marstaa/PySphereX',
packages=setuptools.find_packages(),
install_requires=['numpy'],
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'],
keywords=['sperical harmonics', 'expansion']
)