-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 816 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -- encoding: utf-8 --
from setuptools import setup, find_packages
setup(name='SciSerialize',
version='0.1.1alpha',
description='Serialize scientific data to JSON or MessagePack.',
author='Siegfried Guendert',
author_email='siegfried.guendert@googlemail.com',
url='https://github.com/SciSerialize/sciserialize-python',
license='MIT',
keywords='scientific serialize data exchange json msgpack',
packages=find_packages(exclude=('docs',)),
install_requires=['numpy', 'msgpack-python',
'python-dateutil', 'pandas'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
]
)