-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 760 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# python setup.py --dry-run --verbose install
from distutils.core import setup
setup(
name='lnetatmo',
version='4.2.1',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
author='Philippe Larduinat',
author_email='ph.larduinat@wanadoo.fr',
py_modules=['lnetatmo'],
scripts=[],
data_files=[],
url='https://github.com/philippelt/netatmo-api-python',
download_url='https://github.com/philippelt/netatmo-api-python/archive/v4.2.1.tar.gz',
license='GPL V3',
description='Simple API to access Netatmo weather station data from any python script.'
)