-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
34 lines (32 loc) · 916 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
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='scrapy-heroku',
version=":versiontools:scrapy_heroku:",
description="Utilities for running scrapy on heroku",
long_description="",
keywords='scrapy, heroku',
author='Dave McLain',
author_email='[email protected]',
url='https://github.com/dmclain/scrapy-heroku',
license='BSD',
include_package_data=True,
packages=find_packages(),
install_requires=[
'distribute',
'scrapy',
'psycopg2',
],
setup_requires=[
'versiontools >= 1.8',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)