forked from fgbuster/fgbuster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 969 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 969 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
30
31
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'fgbuster',
version = '2.0.0',
author = 'Davide Poletti, Josquin Errard and the FGBuster developers',
author_email = 'davide.pole@gmail.com, josquin@apc.in2p3.fr',
description = ('Handy parametric component separation tools'),
license = 'GPLv3',
keywords = 'statistics cosmology cmb foregrounds',
url = 'https://github.com/fgbuster/fgbuster',
packages = find_packages(),
include_package_data=True,
long_description = read('README.rst'),
install_requires = [
'parameterized',
'corner',
'numdifftools',
'sympy',
'healpy',
'setuptools_git',
'pysm3',
'cmbdb @ git+http://github.com/dpole/cmbdb.git@master#egg=cmbdb',
],
test_suite = 'fgbuster.test'
)