-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy pathsetup.py
54 lines (44 loc) · 1.28 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# /* spell-checker: disable */
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
# Package meta-data.
NAME = "fclib"
DESCRIPTION = "A library for forecasting utilities"
URL = ""
EMAIL = ""
AUTHOR = "Forecasting team at AI CAT Microsoft"
LICENSE = "MIT"
LONG_DESCRIPTION = DESCRIPTION
with open("requirements.txt") as f:
requirements = f.read().splitlines()
here = os.path.abspath(os.path.dirname(__file__))
# Load the package's __version__.py module as a dictionary.
about = {}
with open(os.path.join(here, NAME, "__version__.py")) as f:
exec(f.read(), about)
setup(
name=NAME,
version=about["__version__"],
url=URL,
license=LICENSE,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
scripts=[],
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
classifiers=[
"Development Status :: 1 - Alpha",
"Intended Audience :: Data Scientists & Developers",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
],
)