forked from juliensobrier/browshot-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 1008 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
35
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = ['simplejson', 'requests']
setup(
name='Browshot',
version='1.14.0',
py_modules=['browshot'],
description='Client to interact with Browshot',
long_description=read('README'),
url='https://github.com/juliensobrier/browshot-python',
license='Apache',
author='Julien Sobrier',
author_email='julien@sobrier.net',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=find_packages(),
namespace_packages=["browshot"],
install_requires=requirements,
test_suite = 'tests',
)