-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (26 loc) · 992 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
import os
from setuptools import setup, find_packages
PACKAGE_DIR = 'src'
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name = "seleshot",
version = '0.0.6',
author = read('AUTHORS'),
keywords = 'selenium screenshot testing pyint',
url = 'https://github.com/perfidia/seleshot',
data_files = [("", [PACKAGE_DIR + os.sep + 'seleshot.py'])],
long_description = read('README.md'),
packages = find_packages(PACKAGE_DIR, exclude=['ez_setup', 'examples', 'tests']),
zip_safe = False,
classifiers = [
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Testing'
],
)