-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (32 loc) · 1.13 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
from os import path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='KnoDat',
version='0.9.1',
description='A set of tools developed for treatment of numerical data',
long_description=long_description,
url="http://knodat.knofafo.de",
author='Jan Bundesmann',
author_email='[email protected]',
license='GPLv2+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='numerics data analysis',
packages=["knodat"],
package_data={"": ["LICENSE"]},
install_requires=['numpy', 'scipy'],
)