-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 920 Bytes
/
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
# encoding: utf-8
"""
setup.py
Created by Kurtiss Hare on 2010-08-05.
Copyright (c) 2010 Medium Entertainment, Inc. All rights reserved.
"""
from setuptools import setup, find_packages
import os
execfile(os.path.join('shrapnel', 'version.py'))
setup(
name = 'shrapnel',
version = VERSION,
description = 'Shrapnel provides tools to make writing web apps with Tornado easier.',
author = 'Kurtiss Hare',
author_email = '[email protected]',
url = 'http://www.github.com/kurtiss/shrapnel',
packages = find_packages(),
scripts = [],
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires = [
# 'confy',
# 'tornado',
# 'pymongo',
# 'memcache'
]
)