move doc to docs as it is more consistent, use new features of edgy.project to generate setup.py with data files

This commit is contained in:
Romain Dorgueil
2016-12-26 11:44:46 +01:00
parent a6cc8ba6db
commit 31dbfd8a22
14 changed files with 46 additions and 49 deletions

View File

@ -7,4 +7,9 @@ PY35 = (sys.version_info >= (3, 5))
assert PY35, 'Python 3.5+ is required to use Bonobo.'
__version__ = '0.0.0'
# Version infos
try:
with open('../version.txt') as f:
__version__ = f.read().strip()
except:
__version__ = 'dev'