Skip to content

Commit

Permalink
docs restructured
Browse files Browse the repository at this point in the history
  • Loading branch information
andgineer committed Apr 21, 2019
1 parent d98e166 commit a60a6a6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions bombard/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
__version__ = '1.8.1'


def version():
return '.'.join(__version__.split('.')[:2])


if __name__ == '__main__':
print(version())
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
with open("README.rst", "r") as fh:
long_description = fh.read()

import sys
sys.path.insert(0, '../')
import bombard

setuptools.setup(
name='bombard',
version='1.6',
version=bombard.version(),
# scripts=['bin/bombard'],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit a60a6a6

Please sign in to comment.