-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (39 loc) · 1.36 KB
/
setup.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Create a long description, code credit: https://github.com/kdheepak/fono
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
install_requires = parse_requirements('requirements.txt')
__title__ = 'nwac'
__summary__ = "Download historical NWAC telemetry and forecast data"
__uri__ = 'https://github.com/jakesherman/nwac'
__author__ = 'jakesherman'
__email__ = '[email protected]'
__license__ = 'MIT License'
__copyright__ = '2022 jakesherman'
__version__ = '0.1.1'
setup(
name=__title__,
version=__version__,
description=__summary__,
long_description=long_description,
long_description_content_type='text/markdown',
license=__license__,
url=__uri__,
author=__author__,
author_email=__email__,
packages=['nwac'],
install_requires=install_requires,
download_url='{}/archive/v{}.tar.gz'.format(
__uri__, __version__),
keywords=['snow', 'nwac', 'avalanche', 'telemetry']
)