-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 1014 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
25
26
27
28
29
#!/usr/bin/env python
from setuptools import setup, find_packages
import smartbytes
with open("README.rst", "r") as f:
long_description = f.read()
setup(name='smartbytes-monitor',
version=smartbytes.__version__,
description=' A Python package to monitor your Airtel Broadband network stats, remaining data, days left, etc',
long_description=long_description,
author='Ritiek Malhotra',
author_email='ritiekmalhotra123@gmail.com',
packages = find_packages(),
entry_points={
'console_scripts': [
'smartbytes = smartbytes.smartbytes:_command_line',
]
},
url='https://www.github.com/ritiek/smartbytes-monitor',
keywords=['airtel', 'stats', 'monitor', 'data-usage', 'smartbytes-tracker'],
license='MIT',
download_url='https://github.com/ritiek/smartbytes-monitor/archive/v' + smartbytes.__version__ + '.tar.gz',
classifiers=[],
install_requires=[
'BeautifulSoup4',
]
)