forked from octoenergy/timeserio
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·52 lines (48 loc) · 1.47 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
#!/usr/bin/env python
# -*- coding: utf-8 -*
import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
# read __version__ attribute from version.py
with open("timeserio/version.py") as f:
exec(f.read())
VERSION = __version__ # type: ignore # noqa
# User README.md as long description
with open("README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="timeserio",
version=VERSION,
description="Machine Learning and Forecasting tools",
long_description=README,
long_description_content_type="text/markdown",
# Credentials
author="Octopus Energy",
author_email="nerds@octopus.energy",
url="https://github.com/octoenergy/timeserio",
license="MIT",
# Package
packages=find_packages(exclude=("tests",)),
entry_points={"console_scripts": []},
include_package_data=True,
zip_safe=False,
install_requires=[
"joblib",
"numpy",
"pandas",
"scikit-learn==0.20.3",
"keras==2.2.4",
"s3fs",
"holidays",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)