-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (42 loc) · 1.5 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
38
39
40
41
42
43
import setuptools
setuptools.setup(
name='scrapybox',
version='0.1',
license='BSD',
url='https://github.com/stav/scrapybox',
download_url='https://github.com/stav/scrapybox/archive/master.zip',
description='A Scrapy GUI',
long_description=open('README').read(),
author='Steven Almeroth',
author_email='[email protected]',
maintainer='Steven Almeroth',
maintainer_email='[email protected]',
install_requires=['aiohttp', 'aiohttp-jinja2', 'cchardet'],
packages=setuptools.find_packages(exclude=('tests', 'docs')),
package_data={"": ["LICENSE", "README"]},
include_package_data=True,
keywords=[
'scrapy',
'async',
'server',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': ['sbserve = scrapybox.server.server:main']
},
)