-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 824 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 824 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
from setuptools import setup
from version import get_git_version
setup(
name="bolo",
version=get_git_version(),
author="",
author_email="",
url = "https://github.com/KIPAC/bolo-calc",
package_dir={"":"python"},
packages=["bolo"],
description="Bolometric Calculations for CMB S4",
long_description=open("README.md").read(),
package_data={"": ["README.md", "LICENSE"]},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=['numpy', 'astropy', 'pyyaml', 'scipy', 'h5py', 'cfgmdl'],
)