~awuerl/blitzortung-python/master

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Andreas Würl
  • Date: 2016-09-14 20:39:51 UTC
  • mto: This revision was merged to the branch mainline in revision 392.
  • Revision ID: git-v1:0577158d36adaee55ba3f8a63918b601e8a4edd4
remove pandas dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
3
from setuptools import setup, find_packages
4
 
from Cython.Build import cythonize
5
 
import numpy as np
6
4
 
7
5
import blitzortung 
8
6
 
9
7
setup(
10
8
    name='blitzortung',
11
9
    packages=find_packages(),
12
 
    ext_modules=cythonize("blitzortung/clustering/pdist.pyx"),
13
 
    include_dirs=[np.get_include()],
14
 
    install_requires=['injector', 'pytz', 'dateutils', 'shapely',  'pyproj', 'numpy', 'pandas', 'statsd'],
 
10
    install_requires=['injector', 'pytz', 'dateutils', 'shapely', 'pyproj', 'statsd', 'six'],
15
11
    tests_require=['nose', 'mock', 'coverage', 'assertpy'],
16
12
    version=blitzortung.__version__,
17
13
    description='blitzortung.org python modules',