forked from sdrave/simdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 914 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
from setuptools import setup, find_packages
setup(
name='simdb',
version='0.3.0',
packages=find_packages(),
description='A simple Python package for management of simulation datasets',
#long_description=long_description,
url='https://github.com/sdrave/simdb',
author='Stephan Rave',
author_email='mail@stephanrave.de',
license='BSD License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Topic :: Database',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='simulation data numerics reproducibility',
install_requires = ['pyyaml', 'numpy'],
)