forked from wuan/bo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·37 lines (34 loc) · 1.35 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import blitzortung
setup(
name='blitzortung',
packages=find_packages(),
install_requires=['injector', 'pytz', 'dateutils', 'shapely', 'pyproj', 'statsd', 'six'],
tests_require=['nose', 'mock', 'coverage', 'assertpy'],
version=blitzortung.__version__,
description='blitzortung.org python modules',
download_url='http://www.tryb.de/andi/blitzortung/',
author='Andreas Wuerl',
author_email='blitzortung@tryb.de',
url='http://www.blitzortung.org/',
license='GPL-3 License',
long_description="""a library providing python classes for blitzortung operation""",
platforms='OS Independent',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)