-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (37 loc) · 1.27 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
30
31
32
33
34
35
36
37
38
39
40
41
42
#! /usr/bin/env python
from setuptools import setup, find_packages
def read(filename):
with open(filename, "r", encoding="utf-8") as fp:
return fp.read()
long_description = u'\n\n'.join(
[
read('README.rst'),
read('AUTHORS.rst'),
read('CHANGES.rst'),
]
)
setup(
name="cru_alaska_temperature",
version="0.2.0.dev0",
author="J Scott Stewart",
author_email="[email protected]",
description="Python package for accessing CRU NCEP temperature data for Alaska",
long_description=long_description,
url="http://github.com/permamodel/cruAKtemp",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Physics",
],
keywords=["permamodel", "permafrost", "alaska", "data"],
install_requires=open("requirements.txt", "r").read().splitlines(),
setup_requires=[],
packages=find_packages(),
package_data={"": ["examples/*", "data/*"]},
include_package_data=True,
)