-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (53 loc) · 1.3 KB
/
setup.py
File metadata and controls
57 lines (53 loc) · 1.3 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
"""
Python_tools_for_Excel
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Python_tools_for_Excel",
version="0.0.1b0",
author="Bradley van Ree",
author_email="flyingkoala@bradbase.net",
description="Python_tools_for_Excel",
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',
'research',
'visualization',
'scenario analysis',
'modelling',
'model',
'unit testing',
'testing',
'audit'],
url="https://github.com/bradbase/Python_tools_for_Excel",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: 3-Clause BSD",
"Operating System :: OS Independent",
],
install_requires=['msmb_theme']
)