-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 944 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
#!/usr/bin/env python
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'python data mining scraping'
setup(name='emery',
version='0.0.2',
description="""scraping/mining tools""",
author='starenka',
packages=find_packages(),
download_url = "https://github.com/starenka/emery",
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
install_requires=['requests',
'pyquery',
'tablib',
'beautifulsoup',
'html5tidy',
],
zip_safe=False,
include_package_data=True,
)