-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 806 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 806 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
25
26
27
28
29
import setuptools
from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
import glob
with open("README.md", "r") as fh:
long_description = fh.read()
def configuration(parent_package='', top_path=''):
config = Configuration('', parent_package, top_path)
return config
setup(
name='cunusht',
version='0.1',
packages=['cunusht', 'cunusht.sht', 'cunusht.deflection'],
url='https://github.com/Sebastian-Belkner/cunuSHT',
author='Sebastian Belkner',
author_email='to.sebastianbelkner@gmail.com',
description='General spin-n SHTs on CPU and GPU',
install_requires=[
'numpy',
'healpy',
'logdecorator',
],
requires=['numpy'],
long_description=long_description,
configuration=configuration)