-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (42 loc) · 1.18 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
from setuptools import setup, find_packages
__version__ = "0.0.2"
# -- Edit Start
zip_safe = False
modules = []
dependencies = [
'matplotlib==2.2.3;python_version<"3.5"', # Last version compatible with python 2.7
'matplotlib>=2.2.3;python_version>="3.5"',
'numpy>=1.15.1',
'pandas>=0.23.0',
'scipy>=1.0.0',
]
extras_require={
}
dependency_links = [
]
entry_points = {
"console_scripts": ['forecast = nsa.forecast.app:main']
}
# -- Edit Stop
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="anticipy",
version=__version__,
description="Forecasting tools",
long_description=long_description,
long_description_content_type="text/markdown",
author="Pedro Capelastegui",
author_email="[email protected]",
url="https://github.com/sky-uk/anticipy",
license="BSD",
packages=find_packages(),
py_modules=modules,
include_package_data=True,
install_requires=dependencies,
dependency_links=dependency_links,
zip_safe=zip_safe,
entry_points=entry_points,
classifiers=["License :: OSI Approved :: BSD License"],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*'
)