-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 666 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 666 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
#!/usr/bin/env python3
"""script for instalation of my_owm"""
from setuptools import setup, find_packages
def get_readme():
"""reads README"""
with open('README.md') as file:
return file.read()
setup(
name='drivers-my_owm',
version='0.1',
description='Open weather map commandline client',
long_description=get_readme(),
classifiers=[
'Programming Language :: Python :: 3',
],
install_requires=[
'requests'
],
include_package_data=True,
zip_safe=False,
packages=find_packages(),
entry_points={
'console_scripts': [
'my_owm=source.my_owm:main',
],
},
)