-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 866 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
from pathlib import Path
here = Path(__file__).parent.absolute()
# Get the long description from the README file
with open(here.joinpath('README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='warming_levels',
version='0.1.0',
description='Woodwell Climate Research Center | Functions for working with CMIP6 data at warming levels',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/abbylute/Warming_levels',
author='Woodwell Climate Research Center',
author_email='[email protected]',
license='TBD',
packages=find_packages(where = 'src'),
package_dir={"": "src"})