-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1001 Bytes
/
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
import setuptools
import glob
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="mfpandas",
version="0.0.8",
author="Wizard of z/OS",
author_email="[email protected]",
description="Parsing various z/OS structures into Panda dataframes.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/wizardofzos/mfpandas",
project_urls={
"Bug Tracker": "https://github.com/wizardofzos/mfpandas/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
package_dir={
"": "src"
},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
install_requires=[
'wheel',
'pandas>=1.5.2',
'xlsxwriter>=3.1.0'
],
python_requires=">=3.6",
)