-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 698 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cif',
version='0.0.6',
description='Composite Indicators Framework for Business Cycle Analysis',
long_description=long_description,
long_description_content_type="text/markdown",
license='gpl-3.0',
packages=find_packages(),
install_requires=['requests', 'pandas>=0.24.0', 'matplotlib', 'statsmodels>=0.11.0'],
python_requires='>=3, <4',
author='Lenka Vraná',
author_email='lenka.vrana@gmail.com',
keywords=['business cycle analysis', 'composite indicators', 'OECD data download'],
url='https://github.com/LenkaV/CIF'
)