2019-04-19 22:20:27 +00:00
|
|
|
# Copyright 2019 Ram Rachum.
|
|
|
|
# This program is distributed under the MIT license.
|
|
|
|
|
2019-04-22 12:47:37 +00:00
|
|
|
import setuptools
|
2019-04-19 22:20:27 +00:00
|
|
|
|
2019-04-22 12:47:37 +00:00
|
|
|
setuptools.setup(
|
2019-04-19 22:20:27 +00:00
|
|
|
name='PySnooper',
|
2019-04-23 07:18:39 +00:00
|
|
|
version='0.0.8',
|
2019-04-19 22:20:27 +00:00
|
|
|
author='Ram Rachum',
|
|
|
|
author_email='ram@rachum.com',
|
|
|
|
description="A poor man's debugger for Python.",
|
2019-04-21 17:54:55 +00:00
|
|
|
long_description=open('README.md', 'r').read(),
|
2019-04-19 22:20:27 +00:00
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
url='https://github.com/cool-RR/PySnooper',
|
2019-04-22 12:47:37 +00:00
|
|
|
packages=setuptools.find_packages(exclude=['tests']),
|
2019-04-21 18:39:32 +00:00
|
|
|
install_requires=open('requirements.txt', 'r').read().split('\n'),
|
|
|
|
tests_require=open('test_requirements.txt', 'r').read().split('\n'),
|
2019-04-19 22:20:27 +00:00
|
|
|
classifiers=[
|
2019-04-21 18:52:54 +00:00
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2019-04-19 22:20:27 +00:00
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
],
|
2019-04-21 18:39:32 +00:00
|
|
|
|
2019-04-22 12:40:09 +00:00
|
|
|
)
|