-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
21 lines (20 loc) · 882 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from distutils.core import setup
import ibei
setup(name = "ibei",
version = ibei.__version__,
author = "Joshua Ryan Smith",
author_email = "[email protected]",
packages = ["ibei"],
url = "https://github.com/jrsmith3/ibei",
description = "Calculator for incomplete Bose-Einstein integral",
classifiers = ["Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",],
install_requires = ["numpy",
"sympy",
"astropy"],)