-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 823 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 823 Bytes
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
info = {}
with open(os.path.join(here, 'frosta', '__version__.py')) as f:
exec(f.read(), info)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name=info['__title__'],
version=info['__version__'],
description=info['__description__'],
long_description=long_description,
long_description_content_type='text/markdown',
author=info['__author__'],
author_email=info['__contact__'],
license=info['__license__'],
url=info['__url__'],
packages=find_packages(),
install_requires=[
'frost_sta_client',
'geojson',
'pandas',
'pytz'
],
keywords=['sta', 'ogc', 'frost', 'sensorthingsapi', 'IoT']
)