Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nogayama committed Mar 5, 2020
1 parent f017aa9 commit 0f0ba63
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 5 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# USpec

[uspec](https://github.com/MountainField/uspec) is
[USpec](https://github.com/MountainField/uspec) is a *Behaviour-Driven Development* tool for Python developers.

USpec provides a Rspec like specification format, and generates tests executable by [unittest](https://docs.python.org/3/library/unittest.html) .



Expand All @@ -20,10 +22,19 @@ Usage



Test
----

```bash
$ python -m unittest discover -s tests -p "*.py" -v
```



Author
------

* **Takahide Nogayama** - [Nogayama](https://github.com/nogayama)
- **Takahide Nogayama** - [Nogayama](https://github.com/nogayama)



Expand Down
25 changes: 24 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
pycode4meta += line
exec(pycode4meta)

_long_description=__description__
with io.open("README.md", "rt", encoding="UTF-8") as f:
_long_description = f.read()

setup(
name="uspec",
version=__version__,
Expand All @@ -32,8 +36,13 @@
download_url=__download_url__,
license=__license__,

long_description=_long_description,
long_description_content_type="text/markdown",

python_requires='>=3.0',

package_dir={
'': 'src'
"": "src"
},
py_modules=[
"uspec",
Expand All @@ -42,4 +51,18 @@
"scripts/uspec",
],
test_suite="tests",

classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)
4 changes: 2 additions & 2 deletions src/uspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
from __future__ import unicode_literals, print_function, division

__version__ = "1.0.22"
__description__ = "RSpec like BDD tool based on unittest"
__description__ = "RSpec like behavior driven development (BDD) tool based on unittest"
__author__ = "Takahide Nogayama"
__author_email__ = "[email protected]"
__url__ = "https://github.com/MountainField/uspec"
__download_url__ = "https://github.com/MountainField/uspec/releases"
__license__ = "IBM"
__license__ = "MIT"

from abc import ABCMeta, abstractmethod
import contextlib as _contextlib
Expand Down

0 comments on commit 0f0ba63

Please sign in to comment.