forked from hltbra/pyhistorian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 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
from setuptools import setup, find_packages
import sys, os
version = '0.6.8'
readme_fd = open('README.rst')
readme = readme_fd.read()
readme_fd.close()
setup(name='pyhistorian',
version=version,
description="pyhistorian is a BDD tool for writing specifications using Given-When-Then template",
long_description=readme,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Testing',
],
keywords='bdd dsl python',
author='Hugo Lopes Tavares',
author_email='[email protected]',
url='http://github.com/hugobr/pyhistorian',
license='MIT License',
packages=['pyhistorian', 'pyhistorian.specs', ],
package_dir={'pyhistorian': 'pyhistorian', 'pyhistorian.specs': 'specs'},
include_package_data=True,
zip_safe=False,
install_requires=['should-dsl',
'termcolor',],
entry_points="",
)