-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (37 loc) · 1.16 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
from setuptools import setup, find_packages
try:
with open('README.md') as readme:
long_description = readme.read()
except (IOError, ImportError):
long_description = ''
setup(
install_requires=[
"selenium>=2.41.0"
],
entry_points={
"console_scripts": [
"polished = polished.main:main"
]
},
name="polished",
packages=find_packages(),
version="0.0.15",
author="Eric Carmichael",
author_email="eric@ckcollab.com",
description="Generates screenshots of a website based on git history",
long_description=long_description,
license="MIT",
keywords="screen capture, video",
url="https://github.com/ckcollab/polished",
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)