-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
38 lines (28 loc) · 1021 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
36
37
38
# coding=utf-8
# Copyright (C) 2013-2015 David R. MacIver ([email protected])
# This file is part of Hypothesis (https://github.com/DRMacIver/hypothesis)
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at http://mozilla.org/MPL/2.0/.
# END HEADER
from distutils.core import setup
from setuptools import find_packages
import os
def local_file(name):
return os.path.join(os.path.dirname(__file__), name)
SOURCE = local_file("src")
README = local_file("README.rst")
setup(
name='hecate',
version="0.1.0",
author='David R. MacIver',
author_email='[email protected]',
packages=find_packages(SOURCE),
package_dir={"": SOURCE},
url='https://github.com/DRMacIver/hecate',
license='MPL v2',
description='A selenium style testing library for console applications',
zip_safe=False,
long_description=open(README).read(),
tests_require=['pytest']
)