-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
29 lines (27 loc) · 1.1 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
from setuptools import setup, find_packages
from os import path
import io
def readme():
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
return f.read()
setup(
name = 'tradingeconomics',
packages = find_packages(exclude=['tests*']),
version = '4.3.11',
description = 'Trading Economics API',
long_description =readme(),
long_description_content_type='text/x-rst',
author = 'Trading Economics',
author_email = '[email protected]',
license = 'MIT',
url = 'https://github.com/tradingeconomics/tradingeconomics-python',
download_url = 'https://github.com/tradingeconomics/tradingeconomics-python/tree/main/dist',
keywords = ['tradingeconomics', 'data'],
classifiers = [ 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.8'],
install_requires = ['pandas', 'websocket-client'],
)