forked from aksiksi/dubizzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 931 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
from distutils.core import setup
# Load up README
with open('README.txt') as f:
long_description = f.read()
setup(
name='dubizzle',
author='Assil Taoufik Ksiksi',
author_email='[email protected]',
url='https://github.com/Cyph0n/dubizzle/',
keywords=['dubizzle', 'scraping', 'API', 'search', 'classifieds'],
version='0.1',
description='A scraping-based API for Dubizzle.',
long_description=long_description,
packages=['dubizzle'],
install_requires=['requests', 'beautifulsoup4'],
classifiers=[
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
],
)