Skip to content

Commit

Permalink
Update setup.py and MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed May 9, 2018
1 parent d04f3db commit c3463d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include README.rst LICENSE
include README.rst LICENSE
prune tests
2 changes: 1 addition & 1 deletion arango/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.0.0'
__version__ = '4.0.1'
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
from setuptools import setup, find_packages

from arango import version
from arango.version import __version__

with open('./README.rst') as fp:
description = fp.read()

setup(
name='python-arango',
description='Python Driver for ArangoDB',
version=version.__version__,
long_description=description,
version=__version__,
author='Joohwan Oh',
author_email='joohwan.oh@outlook.com',
url='https://github.com/joowani/python-arango',
Expand Down

0 comments on commit c3463d6

Please sign in to comment.