-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 865 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
from setuptools import setup, find_packages
VERSION = '0.1.0'
setup(
name='bones-testing',
version=VERSION,
description='A behavior-driven testing framework',
long_description=open('README.rst').read(),
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
],
author='Doug Royal',
author_email='douglasroyal@gmail.com',
license='Apache Software License',
url='http://houseofquark.com/bones-testing',
keywords='test',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=open('requirements.txt').readlines(),
tests_require=open('test-requirements.txt').readlines(),
entry_points = {
'console_scripts': ['bones = bones.main:main']
},
)