-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 831 Bytes
/
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name = 'powerline-owmweather',
description = 'A Powerline segment for fetching and showing the weather in the current location',
long_description = long_description,
long_description_content_type = 'text/markdown',
version = '0.4',
keywords = 'powerline weather segment terminal cli',
license = 'MIT',
author = 'DeepSpace2',
author_email = '[email protected]',
url = 'https://github.com/DeepSpace2/powerline-owmweather',
packages = ['powerline_owmweather'],
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Terminals'
]
)