-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
27 lines (24 loc) · 855 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
#!/usr/bin/env python
# coding: utf8
from setuptools import setup
VERSION = '5.1.1'
long_description = open('README.md').read()
setup(name='finam-export',
version=VERSION,
description='Python library to download historical data from finam.ru',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache-2',
author='ffeast',
author_email='[email protected]',
url='https://github.com/ffeast/finam-export',
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, <4',
install_requires=[
'pandas>=1.1.2',
'requests>=2.24.0, <3',
'enum34',
'click>=7.1.2',
'click-datetime>=0.2'
],
scripts=['scripts/finam-download.py', 'scripts/finam-lookup.py'],
packages=['finam'])