-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 815 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 815 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
30
31
# -*- coding: utf-8 -*-
""" JioFiber setup.py script """
# JioFiber
from jiofiber import __version__
# system
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from os.path import join, dirname
setup(
name='jioFiber-Api',
version='0.1.4',
description='Unoffical JioFiber Router API to access it via python',
author='Shreyas Kapale',
author_email='kapale.shreyas@gmail.com',
packages=find_packages(),
url='http://github.com/shreyaskapale/jiofiber-api',
long_description=open('README.txt').read(),
license='MIT',
python_requires='>=3.6.0',
install_requires=['requests','beautifulsoup4'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)