-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (48 loc) · 1.46 KB
/
setup.py
File metadata and controls
57 lines (48 loc) · 1.46 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
"""Project configuration."""
import os
import sys
from setuptools import find_packages
from setuptools import setup
from markdown_frames import __version__
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = [
'pyspark>=2.1.1',
'pandas',
]
if sys.version_info < (3, 5,):
install_requires.append('scandir')
install_requires.append('typing')
version = __version__
setup(
name='markdown_frames',
version=version,
packages=find_packages(exclude=('tests', 'docs',)),
author='Vaidas Armonas',
author_email='vaidas.armonas@gmail.com',
url='https://github.com/Va1da2/markdown-frames',
description='Markdown tables parsing to pyspark / pandas dataframes.',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Testing",
],
install_requires=install_requires,
extras_require={
'dev': [
'mccabe>=0.5.0',
'pylint',
'pytest',
'pytest-flake8',
'pytest-coverage',
'flake8',
'Sphinx',
]
}
)