forked from internetarchive/umbra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 789 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
import glob
setuptools.setup(
name='umbra',
version='2.1.dev10',
description='Browser automation via chrome debug protocol',
url='https://github.com/internetarchive/umbra',
author='Eldon Stegall',
author_email='eldon@archive.org',
long_description=open('README.md').read(),
license='Apache License 2.0',
packages=['umbra'],
install_requires=['brozzler>=1.1b9.dev201', 'kombu==3.0.37', 'PyYAML'],
scripts=glob.glob('bin/*'),
zip_safe=False,
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Archiving',
])