-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 691 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
from setuptools import setup
setup(
name = "tornadoist",
version = "0.5.2",
author = "Eren G\xc3\xbcven",
author_email = "erenguven0@gmail.com",
description = "mixins for tornado",
license = "Apache License, Version 2",
keywords = ["tornado", "celery"],
url = "https://github.com/eguven/tornadoist.git",
packages = ['tornadoist',],
long_description = open("README.rst").read(),
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
],
)