-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
72 lines (66 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""
FlyingKoala provides the ability to dynamically define Python calculations from Excel formulas enabling you to replace the Excel calculation engine with Python with a genuine minimum of Python code.
The main benefit of replacing existing formulas with FyingKoala is that you get faster calculation, less need to get your hands dirty and can unit test your formulas. It speeds up scenario analysis and model development
Two users;
Those who want to easily add python functions to excel
Those who want to speed up their existing crazy big models
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="flyingkoala",
version="0.0.10b4",
author="Bradley van Ree",
author_email="[email protected]",
description="Integration of xlwings and xlcalculator with MS Excel plug-in.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['xls',
'excel',
'spreadsheet',
'workbook',
'vba',
'macro',
'data analysis',
'analysis'
'reading excel',
'excel formula',
'excel formulas',
'excel equations',
'excel equation',
'formula',
'formulas',
'equation',
'equations',
'pandas',
'harvest',
'timeseries',
'time series',
'energy',
'accounting',
'horticulture',
'research',
'visualization',
'scenario analysis',
'modelling',
'model',
'unit testing',
'testing',
'audit'],
url="https://github.com/bradbase/flyingkoala",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
install_requires=[
'xlwings>=0.15.8',
'numpy>=1.15.0',
'pandas>=0.25.0',
'xlfunctions==0.0.3b0',
'xlcalculator==0.0.5b0',
]
)