-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 952 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
30
31
32
33
34
35
36
37
38
39
40
41
import os
import os.path
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read_me():
with codecs.open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
return f.read()
def get_version():
with codecs.open(os.path.join(os.path.dirname(__file__), 'VERSION')) as f:
return f.read()
setup(
name='NaverShoppingParser',
packages=['shopping_parser'],
data_files=[('', ['README.rst'])],
version=get_version(),
description='Naver shopping parser',
long_description=read_me(),
license='MIT License',
author='Jaeyoung Lee',
author_email='jaeyoung@monodiary.net',
maintainer='Jaeyoung Lee',
maintainer_email='jaeyoung@monodiary.net',
url='https://github.com/jeyraof/naver-shopping-parser',
tests_require=[
'pytest >= 2.3.0',
],
install_requires=[
'lxml',
'cssselect',
]
)