Skip to content

Commit

Permalink
0.2.0 Release
Browse files Browse the repository at this point in the history
Thanks to @sonofmun
Added Changes and improved setup
  • Loading branch information
PonteIneptique committed Apr 5, 2017
1 parent c5c7f2c commit be9ee13
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## 0.2.0 - 2017-04-05

New console system ! HookTest has been slightly rebuilt and redesign to accomodate with Travis Workflow

Huge work from @sonofmun

- Have a build command that creates CapiTainS proof resource directory ( Fixed #57 )
- Add a --travis command ( Fixed #56 )
- Wordcount should be language based ( Fixed #68 )
- Keep track of test status in units.py ( Fixed #67 )
- Add a return to cmd_build ( Fixed #66 )
- Add / Correct unit tests ( Fixed #63 )
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include HookTest/resources/*.rng
include HookTest/resources/*.rng
include CHANGES.txt
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
.. image:: https://readthedocs.org/projects/docs/badge/?version=latest
:alt: Documentation
:target: https://capitains-hooktest.readthedocs.io/en/latest/

What ?
######

Expand Down
27 changes: 23 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,31 @@
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the relevant file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='HookTest',
version="0.1.2",
description='Hook Test Script for GitHub/CTS repositories',
version="0.2.0",
description='Hook Test Script for GitHub/CapiTainS repositories',
long_description=long_description,
url='http://github.com/Capitains/HookTest',
author='Thibault Clérice',
author='Thibault Clérice, Matt Munson',
author_email='leponteineptique@gmail.com',
license='MIT',
packages=find_packages(exclude=("tests")),
classifiers=[
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Version Control",
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Text Processing :: General",
"License :: OSI Approved :: MIT License"
],
install_requires=[
"MyCapytain==1.0.4",
"jingtrang==0.1.1",
Expand All @@ -27,7 +43,10 @@
},
include_package_data=True,
entry_points={
'console_scripts': ['hooktest=HookTest.cmd:cmd', 'hooktest-build=HookTest.cmd:cmd_build']
'console_scripts': [
'hooktest=HookTest.cmd:cmd',
'hooktest-build=HookTest.cmd:cmd_build'
]
},
test_suite="tests",
zip_safe=False
Expand Down

0 comments on commit be9ee13

Please sign in to comment.