-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (43 loc) · 1.15 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
import os
from distutils.command.build import build
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.md')) as f:
README = f.read()
REQUIREMENTS = [
'numpy',
'astropy',
'pymoc',
'healpy',
'sfdmap2',
'seaborn',
'matplotlib-venn',
'pyyaml',
'pyregion==1.2.0',
'humanfriendly'
]
# class CustomBuild(build):
# """Build class to build the database"""
# def run(self):
# # Build the databse
# import database_builder
# database_builder.build_base()
# # Process with the standard build
# build.run(self)
setup(
name="herschelhelp_internal",
version="1.0.5",
description="HELP project internal code",
long_description=README,
author="Yannick Roehlly",
author_email="[email protected]",
license='MIT',
setup_requires=['numpy'],
install_requires=REQUIREMENTS,
package_data={
'herschelhelp_internal/sfd_data': ['*.fits'],
},
packages=find_packages(exclude=['database_builder']),
# cmdclass={'build': CustomBuild},
)