2019-04-23 08:24:37 +00:00
|
|
|
"""
|
|
|
|
Packaging implementation for PySnooper
|
2019-04-19 22:20:27 +00:00
|
|
|
|
2019-04-23 08:24:37 +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-23 08:24:37 +00:00
|
|
|
|
|
|
|
def read_file(filename):
|
|
|
|
"""Return the contents of a file"""
|
|
|
|
with open(filename) as file:
|
|
|
|
return file.read()
|
|
|
|
|
|
|
|
|
2019-04-22 12:47:37 +00:00
|
|
|
setuptools.setup(
|
2019-04-19 22:20:27 +00:00
|
|
|
name='PySnooper',
|
2019-04-23 08:38:45 +00:00
|
|
|
version='0.0.10',
|
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-23 08:24:37 +00:00
|
|
|
long_description=read_file('README.md'),
|
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-23 08:24:37 +00:00
|
|
|
install_requires=read_file('requirements.in'),
|
2019-04-19 22:20:27 +00:00
|
|
|
classifiers=[
|
2019-04-23 08:24:37 +00:00
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
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-23 08:24:37 +00:00
|
|
|
'Topic :: Software Development :: Debuggers',
|
2019-04-19 22:20:27 +00:00
|
|
|
],
|
2019-04-22 12:40:09 +00:00
|
|
|
)
|