-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (44 loc) · 1.77 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""The project setup module
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), mode='utf-8') as f:
long_description = f.read()
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name='pyforesight',
version='1.0.0',
description='Enhanced auto ARIMA based time series forecasting',
url='https://github.com/prashantnbangar/pyforesight',
author='Prashant Bangar',
author_email='prashantbangar@live.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Time Series Forecasting :: ARIMA',
'License :: GNU General Public License v3.0',
'Programming Language :: Python :: 3.7',
],
keywords='python forecasting ARIMA automatic',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
install_requires=['statsmodel'],
# The following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
entry_points={ # Optional
'console_scripts': [
'forecast=Forecaster:main',
],
},
# List additional URLs that are relevant to your project as a dict.
#
# This field corresponds to the "Project-URL" metadata fields:
# https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
project_urls={
'Source': 'https://github.com/prashantnbangar/pyforesight',
},
)