forked from vrcmarcos/elasticmock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marcos Cardoso
committed
Oct 3, 2018
1 parent
12e9e23
commit e674b74
Showing
1 changed file
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
import setuptools | ||
|
||
__version__ = '1.3.3' | ||
|
||
setup( | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name='ElasticMock', | ||
version=__version__, | ||
url='https://github.com/vrcmarcos/elasticmock', | ||
license='MIT', | ||
author='Marcos Cardoso', | ||
author_email='[email protected]', | ||
description='Python Elasticsearch Mock for test purposes', | ||
packages=find_packages(exclude=('tests')), | ||
zip_safe=False, | ||
include_package_data=True, | ||
platforms='any', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/vrcmarcos/elasticmock', | ||
packages=setuptools.find_packages(exclude=('tests')), | ||
install_requires=[ | ||
'elasticsearch', | ||
'mock' | ||
|
@@ -24,7 +25,8 @@ | |
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
"License :: OSI Approved :: MIT License", | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
] | ||
) |