-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.05 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
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import tornadoencookie
with open('README.rst') as stream:
long_desc = stream.read()
setup(
name = tornadoencookie.__name__,
version = tornadoencookie.__version__,
author = tornadoencookie.__author__,
author_email = tornadoencookie.__email__,
packages = ['tornadoencookie'],
license = tornadoencookie.__license__,
description = tornadoencookie.__description__,
url='https://github.com/whardier/tornado-encookie',
long_description = long_desc,
install_requires=[
'tornado',
'pycrypto',
],
classifiers = [
'Programming Language :: Python',
'Operating System :: OS Independent',
'Development Status :: 1 - Planning',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Internet :: WWW/HTTP :: Session',
],
)