-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (60 loc) · 1.61 KB
/
setup.py
File metadata and controls
64 lines (60 loc) · 1.61 KB
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
"""
FlyingKoala performance tests
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="xlcalculator_performance_tests_bradbase",
version="0.0.1b0",
author="Bradley van Ree",
author_email="flyingkoala@bradbase.net",
description="Comparative performance testing of Koala2, PyCel and xlcalculator",
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/xlcalculator_performance_tests",
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=[
'xlcalculator >= 0.0.1b',
'pycel >= 1.0b22',
# 'koala2 >= 0.0.33',
]
)