-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
105 lines (99 loc) · 2.77 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import os
import setuptools
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
TESTS_REQUIRE = [
'coverage',
'flake8',
'mock',
'pytest',
'pytest-cov',
]
setuptools.setup(
name="xlcalculator",
version='0.5.1.dev0',
author="Bradley van Ree",
author_email="brads@bradbase.net",
description="Converts MS Excel formulas to Python and evaluates them.",
long_description=(
read('README.rst')
+ '\n\n' +
read('CHANGES.rst')
),
url="https://github.com/bradbase/xlcalculator",
packages=setuptools.find_packages(),
license="MIT",
keywords=['xls',
'Excel',
'spreadsheet',
'workbook',
'data analysis',
'analysis'
'reading excel',
'excel formula',
'excel formulas',
'excel equations',
'excel equation',
'formula',
'formulas',
'equation',
'equations',
'timeseries',
'time series',
'research',
'scenario analysis',
'scenario',
'modelling',
'model',
'unit testing',
'testing',
'audit',
'calculation',
'evaluation',
'data science',
'openpyxl'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Utilities",
],
install_requires=[
'jsonpickle',
'numpy',
'pandas',
'openpyxl',
'numpy-financial',
'yearfrac>=0.4.8',
'mock',
'scipy'
],
extras_require=dict(
test=TESTS_REQUIRE,
build=[
'pip-tools',
],
),
python_requires='>=3.9',
tests_require=TESTS_REQUIRE,
include_package_data=True,
zip_safe=False,
)