-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (21 loc) · 828 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (21 loc) · 828 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
long_description = """A Python code for computing the scattering properties
of single- and dual-layered spheres with an easy-to-use object oriented
interface.
Based on code by C. Mätzler; ported and published with permission.
Requires NumPy and SciPy.
"""
setup(name='pymiecoated',
version='0.2.0',
download_url=\
'https://github.com/jleinonen/pymiecoated/archive/v0.2.0.tar.gz',
description='Single- and dual-layered Mie scattering computations',
author='Jussi Leinonen',
author_email='jsleinonen@gmail.com',
url='http://code.google.com/p/pymiecoated/',
packages=['pymiecoated','pymiecoated.demos','pymiecoated.test'],
license='MIT',
long_description = long_description,
)