forked from predicador37/pyjstat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.18 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.18 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pyjstat',
version='0.1.6',
author='Miguel Expósito Martín',
author_email='miguel.exposito@gmail.com',
packages=['pyjstat', 'pyjstat.test'],
url='https://github.com/predicador37/pyjstat',
license='Apache License 2.0',
description='Library to handle JSON-stat data in python using pandas '
'DataFrames.',
long_description=open('README.rst').read(),
install_requires=[
'pandas'
],
test_suite='pyjstat.test',
keywords=['json-stat', 'json', 'statistics', 'dataframe', 'converter'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries'
],
)