-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.21 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.21 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='pyaxis',
version='0.4.3',
author='Instituto Cántabro de Estadística & Swiss Data Science Center',
author_email='icane@cantabria.es',
packages=['pyaxis', 'pyaxis.test'],
url='https://github.com/icane/pyaxis',
license='Apache License 2.0',
description='Library to handle PC-Axis data in python using pandas '
'DataFrames.',
long_description=open('README.rst').read(),
install_requires=[
'numpy', 'requests', 'pandas', 'pyjstat'
],
test_suite='pyaxis.test',
keywords=['pcaxis', 'json-stat', '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'
],
)