forked from vallettea/koala
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
75 lines (61 loc) · 1.96 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
73
74
75
"""Setup script."""
from io import open
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
if __name__ == '__main__':
setup(
name="koala2",
version="0.0.36",
author="Ants, open innovation lab",
author_email="[email protected]",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7 :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
include_package_data=True,
url="https://github.com/vallettea/koala",
license="GNU GPL3",
description=(
"A python module to extract all the content of an Excel document and enable calculation without Excel"
),
long_description_content_type='text/markdown',
long_description=long_description,
keywords=['xls',
'excel',
'spreadsheet',
'workbook',
'data analysis',
'analysis'
'reading excel',
'read excel',
'excel formula',
'excel formulas',
'excel equations',
'excel equation',
'formula',
'formulas',
'equation',
'equations',
'timeseries',
'time series',
'research',
'scenario analysis',
'modelling',
'model'],
install_requires=[
'networkx >= 2.4',
'openpyxl >= 3.0.3',
'numpy >= 1.14.2',
'numpy-financial>=1.0.0',
'Cython >= 0.29.15',
'lxml >= 4.5.0',
'scipy>=1.0.0',
'python-dateutil>=2.8.0'
]
)