-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.04 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.04 KB
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
from setuptools import setup, find_packages
setup(
name="vidscraper",
version='1.0.2',
maintainer='Participatory Culture Foundation',
maintainer_email='dev@mirocommunity.org',
url='https://github.com/pculture/vidscraper',
license='BSD',
packages=find_packages(),
include_package_data=True,
scripts=['bin/vidscraper'],
install_requires=[
'feedparser>=5.1.2',
'beautifulsoup4>=4.0.2',
'requests>=1.0.0',
'lxml>=2.3.4',
],
extras_require={
'oauth': ['requests-oauth>=0.4.1'],
'tests': ['unittest2>=0.5.1', 'mock>=0.8.0', 'tox>=1.4.2', 'nose>=1.2.1'],
},
test_suite='vidscraper.tests',
classifiers=(
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Sound/Audio',
),
)