ml-finance-python

python scripts for finance machine learning

git clone https://9o.is/git/ml-finance-python.git

setup.py

(1078B)


      1 from setuptools import setup, find_packages
      2 from codecs import open
      3 from os import path
      4 
      5 __version__ = '0.0.4'
      6 
      7 here = path.abspath(path.dirname(__file__))
      8 
      9 # get the dependencies and installs
     10 with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
     11     all_reqs = f.read().split('\n')
     12 
     13 install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
     14 dependency_links = [x.strip().replace('git+', '') for x in all_reqs if x.startswith('git+')]
     15 
     16 setup(
     17     name='mlfromscratch',
     18     version=__version__,
     19     description='Python implementations of some of the fundamental Machine Learning models and algorithms from scratch.',
     20     url='https://github.com/eriklindernoren/ML-From-Scratch',
     21     download_url='https://github.com/eriklindernoren/ML-From-Scratch/tarball/master',
     22     license='MIT',
     23     packages=find_packages(),
     24     include_package_data=True,
     25     author='Erik Linder-Noren',
     26     install_requires=install_requires,
     27     setup_requires=['numpy>=1.10', 'scipy>=0.17'],
     28     dependency_links=dependency_links,
     29     author_email='eriklindernoren@gmail.com'
     30 )