-
Notifications
You must be signed in to change notification settings - Fork 674
/
setup.py
28 lines (26 loc) · 834 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
from setuptools import setup
from os import path
import io
here = path.abspath(path.dirname(__file__))
with io.open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requires = f.read().split()
setup(
name='cufflinks',
version='0.17.4',
description='Productivity Tools for Plotly + Pandas',
author='Jorge Santos',
author_email='[email protected]',
license='MIT',
keywords=['pandas', 'plotly', 'plotting'],
url='https://github.com/santosjorge/cufflinks',
packages=['cufflinks'],
package_data={'cufflinks': ['../helper/*.json']},
include_package_data=True,
install_requires=requires,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
zip_safe=False
)