-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.4 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
43
import sys
if sys.hexversion < 0x2060000:
raise NotImplementedError('Python < 2.6 not supported.')
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(name='pydons',
version='0.2.5',
description='Python data manimulation add-ons',
long_description=long_description,
author='Jakub Urban',
author_email='coobas at gmail dt com',
url='https://bitbucket.org/urbanj/pydons',
packages=['pydons'],
install_requires=['numpy', 'h5py>=2.1', 'hdf5storage', 'six'],
extras_require={'netCDF4': ['netCDF4']},
# requires=requires,
license='MIT',
keywords='hdf5 netCDF matlab',
classifiers=[
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules"
],
test_suite='nose.collector',
tests_require='nose>=1.0'
)