-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 849 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 849 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
__version__ = '0.7'
setup(
name='neatm',
version=__version__,
author='Migo Mueller',
author_email='m.mueller@astro.rug.nl',
install_requires=[
'numpy',
'astropy'
],
license='LICENSE.txt',
description='Tool to model asteroid thermal emission following the Near-Earth Asteroid Thermal Model (Harris 1998).',
keywords = ['Asteroids', 'Thermal emission', 'NEATM', 'Planetary Science'],
packages=['neatm'],
classifiers = [
"Programming Language :: Python :: 3.5",
"Operating System :: OS Independent"
"Intended Audience :: Science/Research/DataAnalysis",
#"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering"
],
include_package_data=True
)