-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
59 lines (49 loc) · 1.64 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os import path
"""
===============================
HtmlTestRunner
===============================
.. image:: https://img.shields.io/pypi/v/sidetable.svg
:target: https://pypi.python.org/pypi/sidetable
.. image:: https://img.shields.io/travis/chris1610/sidetable.svg
:target: https://travis-ci.org/chris1610/sidetable
sidetable builds simple but useful summary tables of your data
Links:
---------
* `Github <https://github.com/chris1610/sidetable>`_
"""
from setuptools import setup, find_packages
from codecs import open
requirements = ['pandas>=1.0']
test_requirements = ['pytest', 'seaborn']
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
author="Chris Moffitt",
author_email='chris@moffitts.net',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
description="sidetable builds simple but useful summary tables of your data",
install_requires=requirements,
license="MIT license",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
keywords='sidetable',
name='sidetable',
packages=find_packages(include=['sidetable']),
python_requires='>=3.6',
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/chris1610/sidetable',
version='0.9.1',
zip_safe=False,
)