forked from scrapy/w3lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 840 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
args=dict(
name='w3lib',
version='1.0',
license='BSD',
description='Library of web-related functions',
author='Scrapy project',
author_email='info@scrapy.org',
url='http://github.com/scrapy/w3lib',
packages=['w3lib'],
platforms = ['Any'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
]
)
try:
from setuptools import setup
args['test_suite'] = 'w3lib.tests.suite'
except ImportError:
from distutils.core import setup
setup(**args)