-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.01 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.01 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
"""Setup script for the markdown parsing library."""
from distutils.core import setup
from pathlib import Path
from setuptools import find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="markdown_frames",
version="1.0.6",
packages=find_packages(
exclude=(
"tests",
"docs",
)
),
install_requires=[],
author="Exacaster",
author_email="support@exacaster.com",
url="https://github.com/exacaster/markdown_frames",
description="Markdown tables parsing to pyspark / pandas DataFrames",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
],
extras_require={
"pyspark": ["pyspark"],
"pandas": ["pandas"],
},
)