2016-12-09 11:18:05 -08:00
|
|
|
from os.path import join
|
|
|
|
|
2013-11-06 17:24:47 -08:00
|
|
|
from invocations import docs
|
2016-04-26 11:36:52 -07:00
|
|
|
from invocations.testing import test, integration, watch_tests
|
2013-11-06 17:24:47 -08:00
|
|
|
from invocations.packaging import release
|
|
|
|
|
|
|
|
from invoke import Collection
|
|
|
|
|
2014-04-14 17:52:24 -04:00
|
|
|
|
2016-04-26 11:36:52 -07:00
|
|
|
ns = Collection(test, integration, watch_tests, release, docs)
|
|
|
|
ns.configure({
|
|
|
|
'tests': {
|
|
|
|
'package': 'releases',
|
|
|
|
},
|
2016-07-25 17:33:30 -07:00
|
|
|
'packaging': {
|
|
|
|
'sign': True,
|
|
|
|
'wheel': True,
|
2016-12-09 11:18:05 -08:00
|
|
|
'changelog_file': join(
|
|
|
|
docs.ns.configuration()['sphinx']['source'],
|
|
|
|
'changelog.rst',
|
|
|
|
),
|
2016-07-25 17:33:30 -07:00
|
|
|
},
|
2015-07-20 15:55:24 -04:00
|
|
|
})
|