-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (26 loc) · 871 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
import os
from setuptools import setup
import pysmartprice
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='python-smartprice',
version=pysmartprice.VERSION,
packages=['pysmartprice'],
include_package_data=True,
license='BSD License',
description='A simple scraping-based python library for MySmartPrice',
long_description=README,
url='https://github.com/asifpy/python-smartprice',
author='Asif Jamadar',
author_email='[email protected]',
keywords=['smartprice', 'price comparision', 'scrapping'],
install_requires=[
'requests>=2.5.3',
'beautifulsoup4>4.4.0',
'pytest>=2.8.5',
'lxml>=4.1.0'
],
)