-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
41 lines (39 loc) · 1.17 KB
/
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
from setuptools import setup, find_packages
exclude = ['examples']
setup(
name='shublang',
version='0.2.2',
license='BSD',
author='Akshay Philar',
author_email='[email protected]',
description='Shublang - Data Extraction DSL',
url="https://github.com/scrapinghub/shublang",
packages=find_packages(exclude=exclude),
include_package_data=True,
entry_points={
'console_scripts': [
'shublang = shublang.cmdline:execute_from_command_line'
]
},
platforms=['Any'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.6',
install_requires=[
'pipe >= 1.5.0',
'jmespath >= 0.9.4',
'w3lib >= 1.21.0',
'parsel >= 1.5.2',
'dateparser >= 0.7.2',
'price-parser >= 0.3.2',
'unidecode >= 0.4.20'
]
)