forked from vukasin/tornado-subprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.07 KB
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
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="tornado_subprocess",
version='0.1.5',
author='Vukasin Toroman',
author_email='vukasin@toroman.name',
url='https://github.com/vukasin/tornado-subprocess',
packages=[ "tornado_subprocess"],
description= "A module which allows you to spawn subprocesses from a tornado web application in a non-blocking fashion.",
install_requires=[
'tornado'
],
include_package_data=True,
license='BSD',
keywords="tornado subprocess nonblocking",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Topic :: Internet :: WWW/HTTP"
],
platforms=["unix", "osx", "linux" ],
#long_description=read('README.md'),
zip_safe=False
)