This repository was archived by the owner on Aug 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (57 loc) · 1.53 KB
/
setup.py
File metadata and controls
63 lines (57 loc) · 1.53 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
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
TESTS_REQUIRE = [
'coverage',
'flake8',
'mock',
'pytest',
'pytest-cov',
]
setup(
name="xlfunctions",
version='0.2.3.dev0',
author="Bradley van Ree",
author_email="brads@bradbase.net",
description=(
"Implemententation of Python equivalents of MS Excel functions."
),
long_description=(
read('README.rst')
+ '\n\n' +
read('CHANGES.rst')
),
url="https://github.com/bradbase/xlfunctions",
packages=find_packages(),
license="GPL 3.0",
keywords="Excel functions",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
],
install_requires=[
'numpy',
'pandas',
'numpy_financial',
'python-dateutil',
'yearfrac',
],
extras_require=dict(
test=TESTS_REQUIRE,
build=[
'pip-tools',
],
),
python_requires='>=3.7',
tests_require=TESTS_REQUIRE,
include_package_data=True,
zip_safe=False,
)