https://github.com/antoinecarme/pyaf
Raw File
Tip revision: d4e11a72635ea2b37cadfac2aba887df0ca0ee6b authored by Antoine Carme on 04 April 2020, 16:12:21 UTC
Some package dependencies are optional #117
Tip revision: d4e11a7
setup.py
from setuptools import setup
from setuptools import find_packages

import os
import glob
setup(name='pyaf',
      version='1.2',
      description='Python Automatic Forecasting',
      author='Antoine CARME',
      author_email='antoine.carme@laposte.net',
      url='https://github.com/antoinecarme/pyaf',
      license='BSD 3-clause',
      packages=['pyaf'],
      install_requires=[
          'scipy',
          'pandas',
          'sklearn',
          'matplotlib',
          'pydot',
          'dill',
          'pathos',
          'sqlalchemy'
      ])

back to top