-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 1.17 KB
/
setup.py
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
28
29
"""Setup file."""
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='AeroMix',
version='1.0.1',
description='Python package for modeling aerosol optical properties',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/sampr7/AeroMix',
author='Sam P Raj',
author_email='[email protected]',
licence='GNU General Public License v3 (GPLv3)',
packages=['AeroMix'],
package_dir={'AeroMix': 'AeroMix'},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent', ],
keywords=['aerosol model mixing state AOD SSA g'],
install_requires=['numpy', 'scipy', 'PyMieScatt'],
package_data={'AeroMix': ['aerosol_components/*']},
zip_safe=False)