-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 856 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 856 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
from setuptools import setup, find_packages
setup(
name = 'mcfost',
fullname = 'MCFOST Python Tools',
version = "0.03",
description = 'Python utilities for MCFOST radiative transfer simulations',
long_description = """
Python tools for working with MCFOST radiative transfer models.
""",
author = "Christophe Pinte, Marshall Perrin & Schuyler Wolff",
author_email = "",
url = "https://github.com/cpinte/mcfost-python",
requires = ['astropy','numpy', 'matplotlib'],
packages = ['mcfost'],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Development Status :: 4 - Beta"
]
)