-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 804 Bytes
/
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
import setuptools
setuptools.setup(
name="aospy_user",
version="0.0",
packages=setuptools.find_packages(),
author="Spencer A. Hill",
author_email="[email protected]",
description="Library of aospy objects I use in my research",
license="Apache",
keywords="climate science",
url="https://github.com/spencerahill/aospy-obj-lib",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Atmospheric Science'
]
)