-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 790 Bytes
/
setup.py
File metadata and controls
40 lines (35 loc) · 790 Bytes
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
37
38
39
40
# -*- coding: utf-8 -*-
from setuptools import setup
packages = [
'gentoolkit',
'gentoolkit.cache',
'gentoolkit.config',
'gentoolkit.extjson',
'gentoolkit.l10n',
'gentoolkit.logger',
'gentoolkit.manhole',
'gentoolkit.profiler',
'gentoolkit.services'
]
setup(
name='gentoolkit',
version='0.2',
description='General ToolKit',
url='https://github.com/tvv/gentoolkit',
author="vt",
author_email='vturchaninov@gmail.com',
packages=packages,
install_requires=[
'arrow>=0.4.4',
'Babel>=1.3',
'pytz',
'tornado>=4.0.2',
'pylibmc>=1.3.0',
'setproctitle>=1.1.8',
'simplejson>=3.6.5'
],
setup_requires=[
'nose>=1.0'
],
test_suite='nose.collector'
)