#!/usr/bin/env python # -*- coding: utf-8 -*- """ PyPI Boilerplate Setup Standard setup.py file which is used to package and distribute a Python package with Distutils so that it can be published to a PyPI server. This file belongs in the root directory of a project repository. This is an example that uses some basic options which are available for the setup of a PyPI package. It also reads and gathers example dependencies for a package. See: https://pythonhosted.org/setuptools/setuptools.html for more details. """ from setuptools import setup, find_packages from neoparse import __version__ setup( name='python-neoparse', version=__version__, description='Neo4J streams event parsing library.', author='The Orchard', author_email='aminakov@theorchard.com', url='https://github.com/theorchard/python-neoparse', packages=find_packages(), include_package_data=True, test_suite='tests', zip_safe=False, tests_require=[ 'flake8==3.8.3', 'flake8-docstrings==1.5.0', 'flake8-import-order==0.18.1', 'flake8-quotes==3.2.0', 'pytest==6.0.1', ] )