-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (25 loc) · 876 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
24
25
26
27
from setuptools import setup, find_packages
try:
from pypandoc import convert
except ImportError:
import codecs
read_md = lambda f: codecs.open(f, 'r', 'utf-8').read()
else:
read_md = lambda f: convert(f, 'rst')
setup(name='ezclimate',
version='2.0.7',
description='EZ-Climate model',
long_description=read_md('README.md'),
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7'
],
keywords='EZ-climate, optimal carbon price, CO2 tax, social cost of carbon, SCC, social cost of carbon dioxide, SC-CO2',
url='https://github.com/Litterman/EZClimate',
author='Kent Daniel, Robert Litterman, Gernot Wagner',
license='MIT',
packages=find_packages(),
install_requires=['numpy',],
include_package_data=False,
zip_safe=True
)