-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
32 lines (30 loc) · 1.26 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
name='q', version='2.7', py_modules=['q'],
description='Quick-and-dirty debugging output for tired programmers',
long_description=readme, long_description_content_type='text/markdown',
author='Ka-Ping Yee', author_email='ping@zesty.ca',
license='Apache License 2.0',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: Jython",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
],
keywords=['debugging'],
url='http://github.com/zestyping/q'
)