forked from srault95/pysdmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.28 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
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
from distutils.core import setup
import os
# Publish README on PYPI when uploading.
# Need to expand it and rewrite it in reStructuredText
long_descr = open('README.md', 'r').read()
setup(name='pysdmx',
version='0.1',
description='A python interface to SDMX',
long_description = long_descr,
author='Widukind team',
author_email='[email protected]',
py_modules=['sdmx'],
url = 'https://github.com/widukind/pysdmx',
requires=[
'pandas',
'lxml',
'requests'
],
provides = ['sdmx'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Development Status :: 2 - Alpha',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis'
]
)