-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 875 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='pyair_utils',
version='3.0.0',
packages=find_packages(exclude=['docs', 'tests*']),
url='https://github.com/LionelR/pyair_utils',
license='BSD',
author='Lionel Roubeyrie',
author_email='lroubeyrie@limair.asso.fr',
description='Utilities for the pyair package. Requires the windrose package to work.',
long_description="""
- geo : computing geo-statistics for sites against a central site (typically an industrial site), like windroses
and time against wind from the central point. Also provides function for exporting results as KML files.
- plot : Plotting facilities for windroses based reports.
- utils : various independant functions
""",
keywords="air quality windrose statistics",
install_requires=['matplotlib', 'pandas', 'windrose', 'pyair'],
)