This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
63 lines (53 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/python
# -*- coding: utf-8 -*-
# tornado-pyvows extensions
# https://github.com/rafaelcaricio/tornado-pyvows
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com [email protected]
import os
from setuptools import setup
from imp import load_source
version = load_source('version', os.path.join("tornado_pyvows", "version.py"))
tests_require = ['mock']
setup(
name = 'tornado_pyvows',
version = '.'.join([str(item) for item in version.__version__]),
description = "tornado_pyvows are pyvows extensions to tornado web framework.",
long_description = """
tornado_pyvows are pyvows extensions to tornado web framework.
""",
keywords = 'testing vows test tdd',
author = u'Rafael Caricio',
author_email = '[email protected]',
#Contributors
#contributor = 'Bernardo Heynemann',
#contributor_email = '[email protected]',
#contributor = 'Daniel Truemper',
#contributor_email = '[email protected]',
#contributor = 'Norman Rosner',
#contributor_email = '[email protected]',
url = 'https://github.com/rafaelcaricio/tornado_pyvows',
license = 'MIT',
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Testing'
],
packages = ['tornado_pyvows'],
package_dir = {"tornado_pyvows": "tornado_pyvows"},
tests_require = tests_require,
extras_require = {
'test': tests_require,
},
install_requires=[
"pyvows",
"tornado",
"pycurl",
"urllib3"
],
)