-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 920 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='scrapy-broadsoftxchange',
version="1.17",
description="Download documents and published software from Broadsoft Xchange",
long_description="",
keywords='scrapy broadsoft broadworks xchange',
url='https://github.com/lukebeer/scrapy-broadsoftxchange',
author='Luke Berezynskyj (Aka Beer)',
author_email='[email protected]',
license='MIT',
include_package_data=True,
packages=find_packages(),
install_requires=[
'distribute',
'scrapy',
'psutil'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)