-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (40 loc) · 1.43 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='cli-weather',
version='0.1.9',
description='Lightweight command line app to get fast weather data right on the command line',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/vatsa287/cli-weather',
author='Shree Vatsa N',
author_email='[email protected]',
license='GPL 3.0',
packages=['cli_weather'],
install_requires=['requests'],
entry_points = {
'console_scripts': [
'cli-weather=cli_weather.main:main'
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.3",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Natural Language :: English"
],
)