-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
35 lines (28 loc) · 1.22 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = ["humanize>=0.5.0", "pandas>=0.25.1", "pandas_flavor>=0.1.2"]
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest>=3', ]
setup(
name='pandas-log',
version='0.1.7',
description="pandas-log provides feedback about basic pandas operations. It provides simple wrapper functions for "
"the most common functions, such as apply, map, query and more.",
author="Eyal Trabelsi",
author_email='[email protected]',
url='https://github.com/eyaltrabelsi/pandas-log',
packages=find_packages(include=['pandas_log', 'pandas_log.*']),
install_requires=requirements,
python_requires=">=3.4",
license="MIT license",
long_description="pandas-log provides feedback about basic pandas operations. It provides simple wrapper functions "
"for the most common functions, such as apply, map, query and more.",
long_description_content_type="text/x-rst",
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements
)