-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
37 lines (35 loc) · 1.03 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='demiurge',
version='0.2',
description='Scraping micro-framework based on pyquery.',
author='Matias Bordese',
author_email='[email protected]',
url='https://github.com/matiasb/demiurge',
packages=[
'demiurge',
],
package_dir={'demiurge': 'demiurge'},
include_package_data=True,
install_requires=[
'pyquery >= 1.2.8',
],
license="BSD",
zip_safe=False,
keywords='scraping pyquery framework scraper web data extraction',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta'
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
test_suite='tests',
)