-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 931 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name = "stacklesslib",
packages = ["stacklesslib", "stacklesslib.replacements"],
version = "1.0.4",
description = "Standard Stackless Python supporting functionality",
author = "Richard Tew",
author_email = "richard.m.tew@gmail.com",
url = "http://pypi.python.org/pypi/stacklesslib",
keywords = ["microthreads", "coroutines", "stackless", "monkeypatching"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = open("README.txt").read()
)